本帖最後由 tonyh 於 2014-1-4 17:33 編輯
為第6~16行之程式碼加上註解.- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int m=0; //計算質數的空杯子
- for(int i=1; i<=10000; i++) //從 1~10000 對每個數做驗證
- {
- int n=0; //計算因數的空杯子
- for(int j=1; j<=i; j++) //驗證 1到自己本身
- {
- if(i%j==0) //若能整除即為因數
- n++; //因數數目加 1
- }
- if(n==2) //若因數數目剛好為 2
- m++; //質數數目加 1
- }
- cout<<"10000以內的質數總共有: "<<m<<"個!"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |