- #include<iostream>
- using namespace std;
- int calcu(int, int);
- int calcu(int, int, int);
- int main()
- {
- int x , y ,z;
- cout<<"請依序任意輸入三數: "<<endl;
- cin>>x;
- cin>>y;
- cin>>z;
- cout<<"前兩數相加的值為: "<<calcu(x,y)<<endl;
- cout<<"三數相加的值為: "<<calcu(x,y,z)<<endl;
- system("pause");
- return 0;
- }
- int calcu(int x, int y)
- {
- return x+y;
- }
- int calcu(int x, int y, int z)
- {
- return x+y+z;
- }
複製代碼 |