Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
5076 吴承熹 04球的体积 C++ Accepted 0 MS 260 KB 196 2024-11-02 10:08:27

Tests(10/10):


Code:

#include<iostream> #include<iomanip> using namespace std; int main(){ double r,d; cin>>r; d=1.0*4/3*3.1415926*r*r*r; cout<<fixed<<setprecision(4)<<d<<endl; return 0; }