5
旅行社的訂票量小於
10張時,航空公司給予
10%的折扣;訂票量大於或等於
10張且小於
20張時,航空公司給予
15%的折扣;訂票量大於或等於
20張且小於
30張時,航空公司給予
30%的折扣;訂票量大於或等於
30張時,航空公司給予最高的
45%的折扣。程式設計輸入訂票張數及單張機票票價,程式輸出折扣率及應付款額。
#include
#define p 100
using namespace std;
int main()
int t;
float discount;
char d;
cout<<"please input the nums(>0):"<
cin>>t;
if(t>0&&t<10)
else if(t>=10&&t<20)
else if(t>=20&&t<30)
else
switch(d)
return 0;
工大機試第8題
1.編寫乙個程式解決愛因斯坦台階問題 有人走以台階,若以每步走2級則最後剩1級 若每步走3級則最後剩2級 若以每步走4級則最後剩3級 若以每步走5級則最後剩4級 若以每步走6級則最後剩5級 若以每步走7級則最後剛好不剩。問台階共有幾級?原始碼如下 problem8.cpp 定義控制台應用程式的入口點...
工大機試第12題
鍵盤輸入m和n 10 problem12.cpp 定義控制台應用程式的入口點。include stdafx.h include include using namespace std bool prime int a 宣告函式,判斷乙個整數是不是素數 int tmain int argc,tchar...
第五題(重寫,過載)
很基礎的乙個題 談談override,overload,polymorphism override 重寫 覆蓋 overload 過載 polymorphism 多型 override是重寫 覆蓋 了乙個方法,以實現不同的功能。一般是用於 子類在繼承父類時,重寫 重新實現 父類中的方法。重寫 覆蓋 ...