#include#define PI 3.1415926void main(){ float r=5; float area; area=4*r*r*r*PI/3; printf("体积为%f",area);}