Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
4898 | 先明缜 | 03圆的面积 | C++ | Wrong Answer | 0 MS | 252 KB | 292 | 2024-10-01 15:15:46 |
#include<iostream> using namespace std; int main(){ float pi; pi=3.1415626; float a; a=pi*1*1; float b; b=pi*3*3; float c; c=pi*5*5; float d; d=pi*7*7; cout<<a<<endl<<b<<endl<<c<<endl<<d<<endl; return 0; }
------Input------
0
------Answer-----
3.14159 28.2743 78.5398 153.938 254.469
------Your output-----
3.14156 28.2741 78.5391 153.937