7-6 圓形體體積計算器 (20 分)
輸入格式:
在每次計算之前,要求輸出如下介面:
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
intmain()
case2:
case3:
default
:return0;
}}return0;
}
這道題使用c語言的選單,寫下來,方便以後溫習! 7 23 圓形體體積計算器 20分
7 23 圓形體體積計算器 20分 本題要求實現乙個常用圓形體體積的計算器。計算公式如下 球體體積 v 3 4 r 3 其中r是球體半徑。圓柱體體積 v r 2 h,其中r是底圓半徑,h是高。圓錐體體積 v 3 1 r 2 h,其中r是底圓半徑,h是高。輸入格式 在每次計算之前,要求輸出如下介面 1...
7 1 圓形體體積計算器 20分 C
本題要求實現乙個常用圓形體體積的計算器。計算公式如下 1 球體體積 v 4 3 r 3,其中r是球體半徑。2 圓柱體體積 v r 2 h,其中r是底圓半徑,h是高。3 圓錐體體積 v 3 r 2h,其中r是底圓半徑,h是高。在每次計算之前,要求輸出如下介面 1 ball 2 cylinder 3 c...
圓形體體積計算器(20 分)
本題要求實現乙個常用圓形體體積的計算器。計算公式如下 在每次計算之前,要求輸出如下介面 1 ball 2 cylinder 3 cone other exit please enter your command 然後從標準輸入讀進乙個整數指令。如果讀入的指令是1或2或3,則執行相應的體積計算 如果是...