Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
89143 | 殷佳雨萱 | 03圆的面积 | C++ | Accepted | 1 MS | 264 KB | 298 | 2024-08-22 15:29:08 |
#include<iostream> using namespace std; int main(){ double a,b,c,d,e,pi; a=1; b=3; c=5; d=7; e=9; 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; }