| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 154659 | 邵栋-栋栋老师 | 04球的体积 | C++ | Wrong Answer | 1 MS | 276 KB | 204 | 2026-05-30 17:38:30 |
#include<bits/stdc++.h> #define PI 3.1415926 using namespace std; int main() { int n; double vq=0; cin>>n; vq=4/3*PI*n*n*n; cout<<fixed<<setprecision<<vq<<endl; return 0; }
------Input------
9.2
------Answer-----
3261.7606
------Your output-----
12290.221005