Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
112748 | 杨启宏 | 03圆的面积 | C++ | Accepted | 1 MS | 264 KB | 240 | 2025-03-11 18:57:48 |
#include<iostream> // cin\cout\endl using namespace std; int main(){ 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; }