Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
93640 翁思宸 04球的体积 C++ Accepted 0 MS 264 KB 232 2024-10-18 18:48:44

Tests(10/10):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() using namespace std; int main(){ double a,b; //a=3.1415926; scanf("%lf",&b); printf("%.4lf",4/3.0*3.1415926*b*b*b); return 0; }