Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
6546 | 邓小龙 | 04圆的面积 | C++ | Wrong Answer | 0 MS | 256 KB | 284 | 2025-03-07 10:52:45 |
# include<iostream> # include<iomanip> using namespace std; int main() { //圆的面积公式:pi*r*r const double PI=3.1415926; cout<<PI*1*1<<endl; cout<<PI*3*3<<endl; cout<<PI*5*5<<endl; cout<<PI*7*7<<endl; cout<<PI*9*9<<endl; return 0; }
------Input------
926
------Answer-----
2693840.26
------Your output-----
3.14159 28.2743 78.5398 153.938 254.469