只需要带入公式来求体积即可
#include<bits/stdc++.h> using namespace std; int main() { double r; cin>>r; printf("VOLUME = %.3lf",(4/3.0)*3.14159*r*r*r);//公式 }