Board logo

標題: 質數 (一) - 判斷是否為質數 [打印本頁]

作者: 陳品肇    時間: 2021-12-25 10:06     標題: 質數 (一) - 判斷是否為質數

本帖最後由 陳品肇 於 2021-12-25 11:29 編輯

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

作者: 許宸瑀    時間: 2021-12-25 11:30

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

作者: 許馹東    時間: 2021-12-25 11:31

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

作者: 孫子傑    時間: 2021-12-25 11:31

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

作者: 曾善勤    時間: 2021-12-25 11:32

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

作者: 高昀昊    時間: 2021-12-25 11:32

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

作者: 鍾易澄    時間: 2021-12-25 11:33

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

作者: 徐譽豈    時間: 2021-12-25 11:34

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

作者: 柳侑辰    時間: 2021-12-25 11:34

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

作者: 高鋐鈞    時間: 2021-12-25 11:34

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

作者: 黃奕澄    時間: 2021-12-25 11:36

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

作者: 陳駿彥    時間: 2021-12-25 11:36

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

作者: 林紘憲    時間: 2021-12-25 11:36

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

作者: 林鴻慶    時間: 2021-12-25 11:37

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

作者: 田家齊    時間: 2021-12-25 11:38

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

作者: 郭博鈞    時間: 2021-12-25 11:46

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





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2