返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int sum(int,int);
  5. int main()
  6. {
  7.     int x,y;
  8.     cout<<"請輸入第一個數: ";
  9.     cin>>x;
  10.     cout<<"請輸入第二個數: ";
  11.     cin>>y;
  12.     cout<<"兩樹間所有的是總和為: "<<sum(x,y)<<endl;
  13.     system("pause");     
  14.     return 0;
  15. }
  16. int sum(int x,int y)
  17. {
  18.     if(x<y)
  19.     {
  20.         return (x+y)*(y-x+1)/2;   
  21.     }
  22.     else
  23.     {
  24.         return (x+y)*(x-y+1)/2;   
  25.     }     
  26. }   
複製代碼

TOP

返回列表