返回列表 發帖

質數 (一) - 判斷是否為質數

附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    cout<<"***天才兒童質數驗證機***"<<endl;
  7.    re:
  8.    int x,sm=0;
  9.    cout<<"請輸一個正整數";
  10.    cin>>x;
  11.    for( int i=1;i<=x ;i++)
  12.    {
  13.       
  14.        if(x%i==0)
  15.        {         
  16.            
  17.            
  18.            sm++;
  19.        }
  20.    }
  21.    if(sm==2)
  22.       cout<<x<<"是個質數"<<endl;
  23.    else
  24.       cout<<x<<"不是質數"<<endl;
  25.    goto re;  

  26.    system("pause");
  27.    return 0;
  28. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     long a, sum=0;
  8.     cout<<"請輸入一個正整數:";
  9.     cin>>a;
  10.     long i=1;
  11.     while(i<=a)
  12.     {
  13.         if(a%i==0)
  14.         {
  15.             
  16.             sum++;
  17.         }
  18.         i++;
  19.     }
  20.     if(sum==2)
  21.     {
  22.         cout<<a<<"是質數"<<endl;
  23.     }
  24.     else
  25.     {
  26.         cout<<a<<"不是質數"<<endl;
  27.     }
  28.     goto re;
  29.     system("pause");
  30.     return 0;
  31. }
複製代碼

TOP

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

TOP

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int x,a=0;
  8.     cout<<"請輸入一個數: ";
  9.     cin>>x;
  10.     for(int i=1; i<=x; i++)
  11.     {  
  12.        if(x%i==0)
  13.            {
  14.            a++;  
  15.            }
  16.     }      
  17.        if(a==2)
  18.            {
  19.            cout<<x<<"是質數"<<endl;
  20.            }   
  21.        else
  22.            {
  23.            cout<<x<<"不是質數"<<endl;
  24.            }
  25.      goto re;  
  26.     system("pause");
  27.     return 0;
  28. }
複製代碼
http://fs-old.mis.kuas.edu.tw/~s1102137106/music/

TOP

返回列表