返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int m=0;   //放入質數的空杯子
  7.     for(int i=1; i<=10000; i++)  //檢驗1~10000每一個數
  8.     {
  9.         int n=0;     //放入因數的空杯子
  10.         for(int j=1; j<=i; j++)  //從1~自己本身之間的因數        
  11.         {     
  12.             if(i%j==0)   //如果能夠整除
  13.                 n++;    //因數加1
  14.         }
  15.         if(n==2)        //如果因數只有兩個   
  16.             m++;       //質數加1
  17.     }
  18.     cout<<"10000以內的質數總共有: "<<m<<"個!"<<endl;
  19.     system("pause");
  20.     return 0;   
  21. }
複製代碼

TOP

返回列表