Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
92771 | 顾文博 | 03圆的面积 | C++ | Accepted | 0 MS | 264 KB | 264 | 2024-10-06 14:14:40 |
#include<iostream> using namespace std; int main(){ double a=1,b=3,c=5,d=7,e=9; cout<<a*a*3.1415926<<endl; cout<<b*b*3.1415926<<endl; cout<<c*c*3.1415926<<endl; cout<<d*d*3.1415926<<endl; cout<<e*e*3.1415926<<endl; return 0; }