Board logo

標題: 誰的因數多 [打印本頁]

作者: may    時間: 2023-8-4 12:13     標題: 誰的因數多

請輸入兩個正整數,比較誰的因數多?
[attach]16175[/attach]
作者: may    時間: 2023-8-4 12:14

回復 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. }
複製代碼





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