返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void print(int,int);
  5. int main()
  6. {
  7.     int x,y;
  8.     cout<<"請輸入第一個數: ";
  9.     cin>>x;
  10.     cout<<"請輸入最後一個數: ";
  11.     cin>>y;
  12.     print(x,y);
  13.     system("pause");     
  14.     return 0;
  15. }
  16. void print(int x,int y)
  17. {
  18.     if(y>x)
  19.     {
  20.         for(int i=x; i<=y; i++)
  21.         {
  22.             
  23.         }
  24.         cout << "總和是" << (x + y) * (y - x + 1) << endl;      
  25.     }else
  26.     {
  27.         for(int i=x; i>=y; i--){
  28.             }
  29.         cout << "總和是" << (x + y) * (x - y + 1) / 2 << endl;   
  30.     }     
  31. }   
複製代碼

TOP

返回列表