| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 149324 | lmh | 03圆的面积 | C++ | Wrong Answer | 0 MS | 268 KB | 267 | 2026-03-09 17:07:54 |
#include<bits/stdc++.h> using namespace std; int main (){ int a=3.1415926; int b=1; int c=3; int d=5; int e=7; int f=9; cout<<a*b*a*b<<endl; cout<<a*c*a*c<<endl; cout<<a*d*a*d<<endl; cout<<a*e*a*e<<endl; cout<<a*f*a*f<<endl; return 0; }
------Input------
0
------Answer-----
3.14159 28.2743 78.5398 153.938 254.469
------Your output-----
9 81 225 441 729