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

TOP

返回列表