標題:
[作業] 質數 (三) - 100000以內的質數總共有幾個?
[打印本頁]
作者:
方浩葦
時間:
2024-5-10 19:15
標題:
[作業] 質數 (三) - 100000以內的質數總共有幾個?
本帖隱藏的內容需要回復才可以瀏覽
作者:
鄭豊翰
時間:
2024-6-8 09:42
本帖最後由 鄭豊翰 於 2024-6-8 09:57 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum2=0;
for(int i=1; i<=100000; i++)
{
int sum=0;
for(int j=1; j<=i; j++)
{
if(i%j==0)
sum++;
}
if(sum==2)
sum2++;
}
cout<<"100000以內的質數總共有"<<sum2<<"個";
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2