- #include<iostream>
- #include<cstdlib>
- using namespace std;
- void print(int,int);
- int main()
- {
- int x,y;
- cout<<"請輸入第一個數: ";
- cin>>x;
- cout<<"請輸入最後一個數: ";
- cin>>y;
- print(x,y);
- system("pause");
- return 0;
- }
- void print(int x,int y)
- {
- if(y>x)
- {
- for(int i=x; i<=y; i++)
- {
-
- }
- cout << "總和是" << (x + y) * (y - x + 1) << endl;
- }else
- {
- for(int i=x; i>=y; i--){
- }
- cout << "總和是" << (x + y) * (x - y + 1) / 2 << endl;
- }
- }
複製代碼 |