Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
88975 | 刘佳宇 | 04球的体积 | C++ | Wrong Answer | 1 MS | 264 KB | 145 | 2024-08-21 13:35:12 |
#include<iostream> using namespace std; int main(){ double r,d; cin>>r; d=4/3*3.1415926*r*r*r; printf(" %.4lf",d); }
------Input------
9.2
------Answer-----
3261.7606
------Your output-----
2446.3205