標題:
質數 (三) - 100000以內的質數總共有幾個?
[打印本頁]
作者:
王瑞喻
時間:
2020-7-7 12:19
標題:
質數 (三) - 100000以內的質數總共有幾個?
本帖隱藏的內容需要回復才可以瀏覽
作者:
駱顗安
時間:
2020-7-9 16:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c=99999;
for(a=2;a<=100000;a++)
{
for(b=2;b<a;b++)
{
if(a%b==0)
{
c=c-1;
break;
}
}
}
cout<<"100000以內的質數總共有: "<<c<<"個!"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2