变相的考察乘法,不难,但要注意一些细节。
#include<iostream> #include<iomanip> using namespace std; int main() { int R; double V; cin>>R; V=(4/3.0)*3.14159*R*R*R; cout<<fixed<<setprecision(3)<<"VOLUME = "<<V<<endl; return 0; }