返回列表 發帖

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

本帖最後由 陳品肇 於 2018-12-15 11:53 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     re:
  7.     int x,count=0;
  8.     cout<<"請輸入一個正數: ";
  9.     cin>>x;
  10.    
  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.     goto re;
  27.     system("pause");
  28.     return 0;
  29. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表