標題:
[隨堂測驗] 質數 (一) - 判斷是否為質數
[打印本頁]
作者:
方浩葦
時間:
2024-5-10 19:14
標題:
[隨堂測驗] 質數 (一) - 判斷是否為質數
本帖隱藏的內容需要回復才可以瀏覽
作者:
鄭豊翰
時間:
2024-5-11 16:54
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x, y, smaller, op;
cout<<"請輸入第一個正整數: ";
cin>>x;
for(int i=1; i<=x; i++)
{
if(x%i==0)
{
op+=1;
}
}
if(op==2)
{
cout<<x<<"是一個整數!!"<<endl;
}
else
{
cout<<x<<"不是一個整數!!"<<endl;
}
goto re;
return 0;
}
複製代碼
作者:
鄭豊翰
時間:
2024-5-11 17:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=1000, op;
for(int i=1; i<=x; i++){
op=0;
for(int k=1; k<=i; k++){
if(i%k==0){
op+=1;
}
}
if(op==2){
cout<<i<<" "<<endl;
}
}
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2