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

TOP

返回列表