Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
4925 | 邱一涵 | 03圆的面积 | C++ | Accepted | 0 MS | 248 KB | 269 | 2024-10-05 20:38:46 |
#include<iostream> using namespace std; int main(){ int a,b,c,d,e; a=1; b=3; c=5; d=7; e=9; float pi=3.1415926; cout<<pi*a*a<<endl; cout<<pi*b*b<<endl; cout<<pi*c*c<<endl; cout<<pi*d*d<<endl; cout<<pi*e*e<<endl; return 0; }