Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
115982 | 周博涵 | 04球的体积 | C++ | Wrong Answer | 0 MS | 264 KB | 166 | 2025-04-05 18:11:41 |
#include <iostream> #include <cstdio> using namespace std; int main(){ float r,v; scanf("%f",&r); v=4/3.0*3.1415926*r*r*r; printf("%.4f",v); }
------Input------
9.2
------Answer-----
3261.7606
------Your output-----
3261.7605