Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
99941 | 向睿杰 | 04圆的面积 | C++ | Wrong Answer | 1 MS | 264 KB | 216 | 2024-12-01 11:23:09 |
#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; }
------Input------
609
------Answer-----
1165157.01
------Your output-----
3.14159 28.2743 78.5398 153.938 254.469