返回列表 發帖
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int y;
  7.     int start , end;
  8.     cout << "請輸入起始數字:";
  9.     cin >> start;
  10.     cout << "請輸入結束數字:";
  11.     cin >> end;
  12.     for (int x = start; x <= end; x++)
  13.     {
  14.             bool isPrime = true;
  15.             for (int i = 2; i < x; i ++)
  16.             {
  17.                 if (x % i == 0)
  18.                 {
  19.                         isPrime = false;
  20.                         break;
  21.                 }
  22.             }
  23.             if (isPrime == true)
  24.             {
  25.              cout << x << "\t";
  26.             }
  27.         }
  28.     system ("pause");
  29.     return 0;
  30. }
複製代碼

TOP

返回列表