| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 143248 | 潘明泽 | 04球的体积 | C++ | Wrong Answer | 0 MS | 272 KB | 183 | 2026-01-11 19:27:56 |
#include<iostream> using namespace std; double a,b,c,d,e,f; int main(){ cin>>a>>b>>c; b=3.1415926; c=a*b*a*a; e=c*4/3; printf("%.2lf",e); return 0; }
------Input------
9.2
------Answer-----
3261.7606
------Your output-----
3261.76