Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
147667 张蔚林 04球的体积 C++ Accepted 0 MS 200 KB 151 2026-02-07 09:45:44

Tests(10/10):


Code:

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