Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
93456 | 张新福 | 03圆的面积 | C++ | Accepted | 1 MS | 264 KB | 198 | 2024-10-16 15:25:59 |
#include <iostream> using namespace std; int main(){ 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; }