實驗10-1 圓形體體積計算器 (20 分)
本題要求實現乙個常用圓形體體積的計算器。計算公式如下:
球體體積 v=3
4 πr
3 ,其中r是球體半徑。
圓柱體體積 v=πr
2 h,其中r是底圓半徑,h是高。
圓錐體體積 v=3
1 πr
2 h,其中r是底圓半徑,h是高。
輸入格式:
在每次計算之前,要求輸出如下介面:
1-ball
2-cylinder
3-cone
other-exit
please enter your command:
然後從標準輸入讀進乙個整數指令。
輸出格式:
如果讀入的指令是1或2或3,則執行相應的體積計算;如果是其他整數,則程式結束執行。
當輸入為1時,在計算球體體積之前,列印please enter the radius:,然後讀入球體半徑,完成計算;
當輸入為2時,在計算圓柱體體積之前,列印please enter the radius and the height:,然後讀入底圓半徑和高,完成計算;
當輸入為3時,在計算圓錐體體積之前,列印please enter the radius and the height:,然後讀入底圓半徑和高,完成計算。
計算結果在一行內輸出,保留小數點後兩位。
輸入樣例:12
32.4 3
0輸出樣例:
1-ball
2-cylinder
3-cone
other-exit
please enter your command:
please enter the radius:
33.51
1-ball
2-cylinder
3-cone
other-exit
please enter your command:
please enter the radius and the height:
18.10
1-ball
2-cylinder
3-cone
other-exit
please enter your command:
#include//輸入樣例和輸出樣例只要在同乙個顯示器上,不管位置在**,都是正確的;
#include
#define pi atan(1.0)4//也可以是acos(-1.0)=3.141592653589793;
int main()
else if(choice= =2)
else if(choice==3)
else break;
}return 0;
}
實驗10 1 圓形體體積計算器 20分
本題要求實現乙個常用圓形體體積的計算器。計算公式如下 球體體積 v 3 4 r 3 其中r是球體半徑。圓柱體體積 v r 2 h其中r是底圓半徑,h是高。圓錐體體積 v 3 1 r2 h,其中r是底圓半徑,h是高。輸入格式 在每次計算之前,要求輸出如下介面 1 ball 2 cylinder 3 c...
實驗10 1 圓形體體積計算器 20 分
本題要求實現乙個常用圓形體體積的計算器。計算公式如下 球體體積 v 3 4 r 3 其中r是球體半徑。圓柱體體積 v r 2 h,其中r是底圓半徑,h是高。圓錐體體積 v 3 1 r 2 h,其中r是底圓半徑,h是高。輸入格式 在每次計算之前,要求輸出如下介面 1 ball 2 cylinder 3...
實驗10 1 圓形體體積計算器 20 分
本題要求實現乙個常用圓形體體積的計算器。輸入格式 在每次計算之前,要求輸出如下介面 1 ball 2 cylinder 3 cone other exit please enter your command 然後從標準輸入讀進乙個整數指令。輸出格式 如果讀入的指令是1或2或3,則執行相應的體積計算 ...