Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
125498 | 赵梓渊 | 03圆的面积 | C++ | Wrong Answer | 0 MS | 272 KB | 169 | 2025-07-14 17:02:20 |
#include<bits/stdc++.h> using namespace std ; int main(){ double PAI=3.1415926,r,s; cin>>r; s=PAI*r*r; cout<<fixed<<setprecision(2)<<s<<endl; return 0; }
------Input------
0
------Answer-----
3.14159 28.2743 78.5398 153.938 254.469
------Your output-----
0.00