Advertisement
MOHD_NASIR_UDDIN42

1011-Sphere-Uri Online Judge.

May 26th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.17 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int R;
  5.     double sum;
  6.     scanf("%d",&R);
  7.     sum=(4/3.0)*3.14159*R*R*R;
  8.     printf("VOLUME = %.03lf\n",sum);
  9.     return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement