返回列表 發帖

多載函式 (一)

本帖最後由 tonyh 於 2014-8-30 17:41 編輯

多載函式的定義:
相同的函式名稱,卻擁有不同功能運算。
條件是引入參數的數量不同或是型態不同。

練習:
輸入 三個數字 ,分別利用兩個相同名稱的函式來計算  

1.  前兩個數相加
2.  三個數相加

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int cal(int,int);
  5. int cal(int,int,int);
  6. int main()
  7. {
  8.     int x, y, z;
  9.     cout<<"請依序輸入三個數字: ";
  10.     cin>>x>>y>>z;
  11.     cout<<"前兩數相加: "<<cal(x,y)<<endl;
  12.     cout<<"三個數相加: "<<cal(x,y,z)<<endl;   
  13.     system("pause");   
  14.     return 0;
  15. }
  16. int cal(int x,int y)
  17. {
  18.     return x+y;
  19. }
  20. int cal(int x,int y,int z)
  21. {
  22.     return x+y+z;
  23. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

返回列表