本帖最後由 李允軒 於 2014-4-12 14:19 編輯
- #include <iostream>
- #include <cstdlib>
- using namespace std;
- int main()
- {
- int x;
- int y;
- y = 0;
- bool isPrime = true;
- cout << "請輸入一個數:" ;
- cin >> x;
- for(int i = 1; i <= x; i ++)
- {
- if (x % i == 0)
- {
- isPrime = false;
- break;
- }
- }
- cout << endl;
- if (isPrime == true)
- {
- cout << "這個數是質數" << endl;
- }
- else
- {
- cout << "這個數是質數" << endl;
- }
- system ("pause");
- return 0;
- }
複製代碼 |