- #include <cstdlib>
- #include <iostream>
- #include <math.h>
- using namespace std;
- int main() {
- int x, y, a=0;
- bool run = true;
- string con;
- while (run) {
- a = 0;
-
- cout << "請輸入數字1:";
- cin >> x;
- cout << "請輸入數字2:";
- cin >> y;
- for (int i = x; i <= y; i++) {
- a = a + i;
-
-
- }
- cout << "從" << x << "加到" << y << "為" << a << endl;
- cout << "要繼續請打1:";
- cin >> con;
- if (con != "1") {
- break;
- }
- system("cls");
- }
- system("pause");
- return 0;
- }
複製代碼 |