| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 154655 | 邵栋-栋栋老师 | 04球的体积 | C++ | Wrong Answer | 1 MS | 268 KB | 189 | 2026-05-30 17:36:21 |
#include<bits/stdc++.h> #define PI 3.1415926 using namespace std; int main() { int n,vq; 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