返回列表 發帖
  1. #include <cstdlib>
  2. #include <iostream>
  3. #include <math.h>

  4. using namespace std;

  5. int main() {
  6.   int x, y, a=0;
  7.   bool run = true;
  8.   string con;
  9.   while (run) {
  10.     a = 0;
  11.    
  12.     cout << "請輸入數字1:";
  13.     cin >> x;
  14.     cout << "請輸入數字2:";
  15.     cin >> y;
  16.     for (int i = x; i <= y; i++) {
  17.       a = a + i;
  18.       
  19.       
  20.     }
  21.     cout << "從" << x << "加到" << y << "為" << a << endl;

  22.     cout << "要繼續請打1:";
  23.     cin >> con;
  24.     if (con != "1") {
  25.       break;
  26.     }
  27.     system("cls");
  28.   }
  29.   system("pause");
  30.   return 0;
  31. }
複製代碼

TOP

返回列表