Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
111600 | 鲁博睿 | 03圆的面积 | C++ | Accepted | 1 MS | 272 KB | 244 | 2025-03-02 17:12:29 |
#include <bits/stdc++.h> ? using namespace std; int main() { cout<<3.1415926*(1*1)<<endl; cout<<3.1415926*(3*3)<<endl; cout<<3.1415926*(5*5)<<endl; cout<<3.1415926*(7*7)<<endl; cout<<3.1415926*(9*9)<<endl; return 0; }