#include<stdio.h> #define PI 3.1415927 int main() { double r,s; printf("Input r: "); scanf("%lf",&r); printf("%.2lf\n",4*PI*r*r*r/3.0); return 0; }