Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
3800 | 邓小龙 | 03圆的面积 | C++ | Wrong Answer | 0 MS | 260 KB | 266 | 2024-07-06 14:09:10 |
#include<iostream> #include<cstdio> using namespace std; int main(){ const double pi=3.1415926; printf("%lf\n",1*1*pi); printf("%lf\n",3*3*pi); printf("%lf\n",5*5*pi); printf("%lf\n",7*7*pi); printf("%lf\n",9*9*pi); return 0; }
------Input------
0
------Answer-----
3.14159 28.2743 78.5398 153.938 254.469
------Your output-----
3.141593 28.274333 78.539815 153.938037 254.469001