Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
3835 刘芃伽 03圆的面积 C++ Accepted 0 MS 256 KB 284 2024-07-13 10:03:26

Tests(1/1):


Code:

# include<iostream> # include<iomanip> using namespace std; int main() { //圆的面积公式:pi*r*r const double PI=3.1415926; cout<<PI*1*1<<endl; cout<<PI*3*3<<endl; cout<<PI*5*5<<endl; cout<<PI*7*7<<endl; cout<<PI*9*9<<endl; return 0; }