Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
7646 | 谢锦卓 | 04圆的面积 | C++ | Wrong Answer | 2 MS | 260 KB | 343 | 2025-05-10 19:40:36 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int a,s=0; cin>>a; s=a*3.1415926; printf("%.6lf\n",s); return 0; }
------Input------
926
------Answer-----
2693840.26
------Your output-----
0.000000