返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"***天才兒童的質數驗證機***"<<endl<<endl;
  7.     re:
  8.     int a, b=0;
  9.     cout<<"請輸入一正整數: ";
  10.     cin>>a;
  11.     for(int i=1; i<=a; i++)
  12.     {
  13.          if(a%i==0)
  14.                 b++;         
  15.     }
  16.     if(b==2)
  17.     {
  18.            cout<<a<<"是個質數!"<<endl;
  19.     }
  20.     else  
  21.     {
  22.            cout<<a<<"不是質數!"<<endl;
  23.     }
  24.     goto re;
  25.     system("pause");
  26.     return 0;   
  27. }
複製代碼

TOP

返回列表