標題:
037 判斷是否為質數
[打印本頁]
作者:
游東祥
時間:
2014-4-12 13:13
標題:
037 判斷是否為質數
輸入一個數字,判斷是否為質數,將判斷結果輸出。
作者:
林宇翔
時間:
2014-4-12 13:24
本帖最後由 林宇翔 於 2014-4-12 14:15 編輯
#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;
}
}
if (isprime == true)
{
cout << "這個數字是質數";
}
else if (isprime = false)
{
cout << "這個數字不是質數";
}
cout << endl;
system ("pause");
return 0;
}
複製代碼
作者:
李允軒
時間:
2014-4-12 13:32
本帖最後由 李允軒 於 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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2