Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
89135 | 殷佳雨萱 | 03圆的面积 | C++ | Wrong Answer | 0 MS | 276 KB | 275 | 2024-08-22 15:15:58 |
#include<iostream> using namespace std; int main(){ long long a,b,c,d,e,pi; cin>>a>>b>>c>>d>>e; pi=3.1415926; cout<<pi*a*a<<endl; cout<<pi*b*b<<endl; cout<<pi*c*c<<endl; cout<<pi*d*d<<endl; cout<<pi*e*e<<endl; return 0; }
------Input------
0
------Answer-----
3.14159 28.2743 78.5398 153.938 254.469
------Your output-----
0 69900221430675 52795685892288 193552565995200 69896774984448