| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 134894 | 胡思齐 | 03圆的面积 | C++ | Wrong Answer | 1 MS | 264 KB | 257 | 2025-11-01 17:07:47 |
#include<iostream> using namespace std; int main() { float r1=1,r3=3,r5=5,r7=7,r9=9; cout<<3.14159*r1*r1<<endl; cout<<3.14159*r3*r3<<endl; cout<<3.14159*r5*r5<<endl; cout<<3.14159*r7*r7<<endl; cout<<3.14159*r9*r9<<endl; }
------Input------
0
------Answer-----
3.14159 28.2743 78.5398 153.938 254.469
------Your output-----
3.14159 28.2743 78.5397 153.938 254.469