本帖最後由 tonyh 於 2014-1-3 20:18 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- cout<<"***天才兒童的質數驗證機***"<<endl<<endl;
- re:
- int a, n=0;
- cout<<"請輸入一正整數: ";
- cin>>a;
- for(int i=1; i<=a; i++)
- {
- if(a%i==0)
- n++;
- }
- if(n==2)
- cout<<a<<"是個質數!"<<endl;
- else
- cout<<a<<"不是質數!"<<endl;
- goto re;
- system("pause");
- return 0;
- }
複製代碼 |