Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
3834 | 邓小龙 | 03圆的面积 | C++ | Accepted | 0 MS | 264 KB | 285 | 2024-07-13 09:58:26 |
# 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; }