int main() { double R,V; printf(“请输入球的半径为:”); scanf(“%lf”,&R); V=(4/3.0)3.14159pow(R,3); printf(“VOLUME=%lf”,V); return 0; }