計算球體積 HDU - 2002
阿新 • • 發佈:2018-12-09
Text Reverse
Time limit 1000 ms
Memory limit 32768 kB
OS Windows
Source C語言程式設計練習(一)
Problem Description
根據輸入的半徑值,計算球的體積。
Input
輸入資料有多組,每組佔一行,每行包括一個實數,表示球的半徑。
Output
輸出對應的球的體積,對於每組輸入資料,輸出一行,計算結果保留三位小數。
Sample Input
1
1.5
Sample Output
4.189
14.137
Hint
#define PI 3.1415927
問題連結:HDU - 2002
問題簡述:
根據輸入的半徑值,計算球的體積。
問題分析:
做一個球的體積的計算,計算結果保留三位小數。
程式說明:
輸入半徑r,通過計算求出球的體積v,通過printf("%.3lf\n", s)實現保留三位小數。
#include
using namespace std;
#define PI 3.1415927
int main()
{
double r,v;
while (cin >>r)
{
v = 4.0 / 3 * PIrr*r;
printf("%.3lf\n", s);
}
return 0;
}