返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int sum(int,int);
  6. int main()
  7. {
  8.    
  9.     int x,y;
  10.     cout<<"第一個數字: ";
  11.     cin >> x;
  12.     cout<<"最後一個數自: ";
  13.     cin >> y;
  14.     sum(x,y);
  15.     system("pause");
  16.     return 0;
  17. }
  18. int sum(int x,int y)
  19. {
  20.     if(y>x)
  21.     {
  22.     cout <<"總合為"<<(x+y)*y/2;
  23.    

  24.     }
  25.      
  26.     if(x>y)
  27.     {
  28.     cout <<"總合為"<<(x+y)*x/2;
  29.     }
  30. }
複製代碼

TOP

返回列表