Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
131541 罗晟睿 04球的体积 C++ Accepted 2 MS 272 KB 157 2025-09-27 15:11:59

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ double PI=3.1415926,r; cin>>r>>PI; printf("%.4lf",(4.0/3*PI*r*r*r)); return 0;}