Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
122674 | 袁星皓 | 03圆的面积 | C++ | Accepted | 1 MS | 264 KB | 200 | 2025-06-21 12:03:36 |
#include<bits/stdc++.h> using namespace std; int main(){ double x=3.1415926; cout<<1*1*x<<endl; cout<<3*3*x<<endl; cout<<5*5*x<<endl; cout<<7*7*x<<endl; cout<<9*9*x<<endl; return 0; }