Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
91739 | 李谨睿 | 04球的体积 | C++ | Wrong Answer | 1 MS | 268 KB | 156 | 2024-09-22 14:20:59 |
#include <bits/stdc++.h> using namespace std; int main() { double a,b; scanf("%lf", &a); b=4/3*3.1415926*a*a*a; printf("%.4f\n",b); return 0; }
------Input------
9.2
------Answer-----
3261.7606
------Your output-----
2446.3205