[隨堂測驗] 質數 (二) - 1000以內的質數有哪些?
本帖最後由 陳品肇 於 2019-7-6 10:46 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- //count 做因數個數的數量
- int count ;
- for(int j=1;j<=1000;j++)
- {
- count = 0;
- for(int i=1;i<=j;i++)
- {
- if(j%i == 0)
- {
- count++;
- }
- }
-
- if(count==2)
- {
- cout<<j<<"\t";
- }
- }
-
-
- system("pause");
- return 0;
- }
複製代碼 |
附件:
您需要登錄才可以下載或查看附件。沒有帳號?註冊