Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
100544 李朋秦 04球的体积 C++ Accepted 1 MS 268 KB 176 2024-12-08 12:37:05

Tests(10/10):


Code:

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