计算球体积

Problem Description

  根据输入的半径值,计算球的体积。

Input

  输入数据有多组,每组占一行,每行包括一个实数,表示球的半径。

Output

  输出对应的球的体积,对于每组输入数据,输出一行,计算结果保留三位小数。

Sample Input

  1 1.5

Sample Output

  4.189 14.137

 

 

球体的体积公式:V = 4пr3/3

 

 

 

 1 #include <math.h>
 2 #include <stdio.h>
 3 #define PI 3.1415927
 4 int main()
 5 {
 6     double r;
 7     while (scanf("%lf", &r) != EOF)
 8         printf("%.3lf\n", 4.0*PI*r*r*r/3.0);
 9     return 0;
10 }

 

posted @ 2015-01-22 17:22  NYNU_ACM  阅读(518)  评论(0编辑  收藏  举报