Board logo

標題: 【隨堂測驗】計算連續數字的總和 [打印本頁]

作者: 陳育霖    時間: 2023-6-26 23:43     標題: 【隨堂測驗】計算連續數字的總和



本帖隱藏的內容需要回復才可以瀏覽

作者: 陳品諺    時間: 2023-6-27 16:38

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a, b;
  7.     int ans=0;
  8.     re:
  9.     ans=0;
  10.     cout<<"請輸入第一個數: ";
  11.     cin>>a;
  12.     cout<<"請輸入第二個數: ";
  13.     cin>>b;
  14.     if(a<b)
  15.     {   
  16.         for(int i=a;i<=b;i++)
  17.         {
  18.             ans+=i;
  19.         }
  20.         cout<<"從"<<a<<"到"<<b<<"所有整數的總和為: "<<ans<<endl;
  21.     }   
  22.     else
  23.     {   
  24.         for(int i=b;i<=a;i++)
  25.         {
  26.             ans+=i;
  27.         }
  28.         cout<<"從"<<a<<"到"<<b<<"所有整數的總和為: "<<ans<<endl;
  29.     }
  30.     cout<<endl;
  31.     goto re;
  32.     system("pause");
  33.     return 0;
  34. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2