| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 132408 | 曾钰涵 | 03圆的面积 | C++ | Accepted | 1 MS | 264 KB | 210 | 2025-10-08 09:54:13 |
#include<iostream> 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; }