Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
87548 潘泽霖 03圆的面积 C++ Wrong Answer 1 MS 264 KB 256 2024-08-10 16:14:47

Tests(0/1):


Code:

#include<iostream> using namespace std; int main() { double a,b,c,d,e; a=1*1*3.1415926; b=2*2*3.1415926; c=3*3*3.1415926; d=4*4*3.1415926; e=5*5*3.1415926; cout<<a<<endl<<b<<endl<<c<<endl<<d<<endl<<e; return 0; }


Run Info:

------Input------
0
------Answer-----
3.14159 28.2743 78.5398 153.938 254.469
------Your output-----
3.14159 12.5664 28.2743 50.2655 78.5398