返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int a(int,int);
  5. int a(int,int,int);
  6. int main()
  7. {
  8.     int x,y,z;
  9.     cout << "請數入三個數字:" << endl;
  10.     cout << "第一個數(x):";
  11.     cin >> x;
  12.     cout << "第一個數(y):";
  13.     cin >> y;
  14.     cout << "第一個數(z):";
  15.     cin >> z;
  16.     cout << "前兩數相加:" << a(x,y) << endl;
  17.     cout << "三個數相加" << a(x,y,z) << endl;
  18.     system("pause");   
  19.     return 0;
  20. }
  21. int a(int x,int y)
  22. {
  23.     return x + y;
  24. }
  25. int a(int x,int y,int z)
  26. {
  27.     return x + y + z;
  28. }   
複製代碼

TOP

返回列表