標題:
質數 (三)
[打印本頁]
作者:
陳曜誌
時間:
2024-7-24 14:21
標題:
質數 (三)
本帖隱藏的內容需要回復才可以瀏覽
作者:
陳曜誌
時間:
2024-7-24 17:13
本帖最後由 陳曜誌 於 2024-7-24 17:14 編輯
#include<iostream>
using namespace std;
int main()
{
cout<<"100000以內的質數有:";
int sum=0;
int i,j;
for(i=1;i<100000;i++)
{
int count=0;
for(j=1;j<=i;j++)
{
if(i%j==0)
{
count++;
}
}
if(count ==2){
// cout<<i<<"\t";
sum++;
}
}
cout<<sum<<"個"<<endl;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2