Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
112747 | 杨启宏 | 03输出字符序号 | C++ | Wrong Answer | 0 MS | 264 KB | 240 | 2025-03-11 18:57:18 |
#include<iostream> // cin\cout\endl using namespace std; int main(){ 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; }
------Input------
+
------Answer-----
43
------Your output-----
3.14159 28.2743 78.5398 153.938 254.469