標題:
質數 (一) - 判斷是否為質數
[打印本頁]
作者:
陳品肇
時間:
2018-12-15 11:21
標題:
質數 (一) - 判斷是否為質數
本帖最後由 陳品肇 於 2018-12-15 11:53 編輯
[attach]5577[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x,count=0;
cout<<"請輸入一個正數: ";
cin>>x;
for(int i=1;i<=x;i++)
{
if(x%i==0)
{
count++; //算出正數因數有幾個
}
}
if(count==2) //判斷是否為質數
{
cout<<x<<"是質數!"<<endl;
}else
{
cout<<x<<"不是質數!"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
田宇任
時間:
2018-12-15 11:39
此帖僅作者可見
作者:
湯郡一
時間:
2018-12-15 11:56
此帖僅作者可見
作者:
蘇昱全
時間:
2018-12-17 20:07
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2