Board logo

標題: 質數 (三) [打印本頁]

作者: 陳曜誌    時間: 2024-7-24 14:21     標題: 質數 (三)





本帖隱藏的內容需要回復才可以瀏覽

作者: 陳曜誌    時間: 2024-7-24 17:13

本帖最後由 陳曜誌 於 2024-7-24 17:14 編輯
  1. #include<iostream>
  2. using namespace std;

  3. int main()
  4. {
  5.     cout<<"100000以內的質數有:";
  6.     int sum=0;
  7.     int i,j;
  8.     for(i=1;i<100000;i++)
  9.     {
  10.         int count=0;
  11.         for(j=1;j<=i;j++)
  12.         {
  13.             if(i%j==0)
  14.             {
  15.                 count++;
  16.             }
  17.         }
  18.         if(count ==2){
  19.             // cout<<i<<"\t";
  20.             sum++;  
  21.         }
  22.     }
  23.     cout<<sum<<"個"<<endl;
  24. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2