Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
87666 | 汤奕硕 | 03圆的面积 | C++ | Accepted | 1 MS | 260 KB | 231 | 2024-08-11 10:19:27 |
#include <iostream> using namespace std; int main() { const double PI=3.1415926; cout<<1*1*PI<<endl; cout<<3*3*PI<<endl; cout<<5*5*PI<<endl; cout<<7*7*PI<<endl; cout<<9*9*PI<<endl; return 0; }