Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
99942 | 向睿杰 | 03圆的面积 | C++ | Accepted | 0 MS | 264 KB | 216 | 2024-12-01 11:26:26 |
#include<iostream> using namespace std; int main() { 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; }