Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
87778 | 赵天瑜 | 04圆的面积 | C++ | Wrong Answer | 1 MS | 264 KB | 186 | 2024-08-14 18:42:52 |
#include<iostream> #include<cstdio> using namespace std; int main() { const double PI=3.1415926; float a; scanf("%f",&a); printf("%.2f",a*a*PI); return 0; }
------Input------
758.4
------Answer-----
1806951.58
------Your output-----
1806951.78