返回列表 發帖

質數 (三)





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

本帖最後由 陳曜誌 於 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. }
複製代碼

TOP

返回列表