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

TOP

返回列表