Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
143250 潘明泽 04球的体积 C++ Accepted 0 MS 272 KB 183 2026-01-11 19:28:12

Tests(10/10):


Code:

#include<iostream> using namespace std; double a,b,c,d,e,f; int main(){ cin>>a>>b>>c; b=3.1415926; c=a*b*a*a; e=c*4/3; printf("%.4lf",e); return 0; }