返回列表 發帖

誰的因數多

請輸入兩個正整數,比較誰的因數多?
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊
May

回復 1# may
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int x1,x2, sum1=0,sum2=0;
  8.     cout<<"請輸入2個正整數: ";
  9.     cin>>x1>>x2;
  10.     cout<<x1<<"的因數有: ";
  11.     for(int i=1; i<=x1; i++)
  12.     {
  13.         if(x1%i==0)
  14.         {
  15.              cout<<i<<" ";
  16.              sum1++;
  17.         }
  18.     }
  19.     cout<<endl<<x2<<"的因數有: ";
  20.     for(int i=1; i<=x2; i++)
  21.     {
  22.         if(x2%i==0)
  23.         {
  24.              cout<<i<<" ";
  25.              sum2++;
  26.         }
  27.     }
  28.     cout<<endl<<x1<<"總共有"<<sum1<<"個因數!";
  29.     cout<<endl<<x2<<"總共有"<<sum2<<"個因數!"<<endl;
  30.     if(sum1>sum2)
  31.         cout<<x1<<"的因數比"<<x2<<"多"<<sum1-sum2<<"個"<<endl<<endl;
  32.     else if(sum2>sum1)
  33.         cout<<x2<<"的因數比"<<x1<<"多"<<sum2-sum1<<"個"<<endl<<endl;
  34.    else
  35.         cout<<x1<<"的因數和"<<x2<<"的因數,一樣多。"<<endl<<endl;
  36.     goto re;
  37.     return 0;
  38. }
複製代碼
May

TOP

返回列表