- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int a(int,int);
- int a(int,int,int);
- int main()
- {
- int x,y,z;
- cout << "請數入三個數字:" << endl;
- cout << "第一個數(x):";
- cin >> x;
- cout << "第一個數(y):";
- cin >> y;
- cout << "第一個數(z):";
- cin >> z;
- cout << "前兩數相加:" << a(x,y) << endl;
- cout << "三個數相加" << a(x,y,z) << endl;
- system("pause");
- return 0;
- }
- int a(int x,int y)
- {
- return x + y;
- }
- int a(int x,int y,int z)
- {
- return x + y + z;
- }
複製代碼 |