Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
96166 | 王子毅 | 04圆的面积 | C++ | Wrong Answer | 1 MS | 272 KB | 233 | 2024-11-03 10:29:30 |
#include<bits/stdc++.h> using namespace std; int main() { int r; double girth,area; cin>>r; girth=3.1415926*r*r; cout<<setiosflags(ios::fixed)<<setprecision(2); cout<<girth<<endl; return 0; }
------Input------
43.2
------Answer-----
5862.97
------Your output-----
5808.80