根據輸入的半徑值,計算球的體積。
input
輸入資料有多組,每組佔一行,每行包括乙個實數,表示球的半徑。
output
輸出對應的球的體積,對於每組輸入資料,輸出一行,計算結果保留三位小數。
sample input
1 1.5
sample output
4.189
14.137
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define ll long long
#define inf 0x3f3f3f3f
using
namespace
std;
int main()
計算球體積
時間限制 3000 ms 記憶體限制 65535 kb 難度 1 描述 根據輸入的半徑值,計算球的體積。輸入 輸入資料有多組,每組佔一行,每行包括乙個實數,表示球的半徑。0輸出 輸出對應的球的體積,對於每組輸入資料,輸出一行,計算結果四捨五入為整數 hint pi 3.1415926 樣例輸入 1 ...
計算球體積
根據輸入的半徑值,計算球的體積。輸入資料有多組,每組佔一行,每行包括乙個實數,表示球的半徑。0 輸出對應的球的體積,對於每組輸入資料,輸出一行,計算結果四捨五入為整數 hint pi 3.1415926 1 1.54 14 includeint main return 0 include doubl...
計算球體積
根據輸入的半徑值,計算球的體積。input 輸入資料有多組,每組佔一行,每行包括乙個實數,表示球的半徑。output 輸出對應的球的體積,對於每組輸入資料,輸出一行,計算結果保留三位小數。問題簡述 計算球體積,要注意的是,結果要保留小數點後三位。程式簡述 利用球體積公式,求出球的體積。在把結果保留小...