返回列表 發帖

031 兩數字求公因數

輸入兩個數字,並把這兩個數字的公因數都列出來。

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.                 int x,y,z;
  7.                 cout << "請輸入第一個數字;" ;
  8.                 cin >> x;
  9.                                 cout << "請輸入第二個數字;" ;
  10.                 cin >> y;
  11.                 z= (x < y)? x : y;
  12.                 cout << "這個數字的因數有:";
  13.                 for(int i = 1; i <= z; i ++)
  14.                 {
  15.                         if (x % i == 0 && y % i == 0)
  16.                         {
  17.                                  cout << i << "  ";
  18.                         }        
  19.                 }
  20.                 cout << endl;
  21.             system ("pause");
  22.         return 0;
  23. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>

  3. using namespace std;
  4. int main()
  5. {
  6.         int j;
  7.     int h;
  8.     cout << "請輸入一個數字";
  9.         cin >> h;
  10.         cout << "請輸入二個數字";
  11.         cin >> j;
  12.     cout << "他們的公因數有:";
  13.     int l;
  14.     l = (h < j)? h : j;
  15.     for (int m = 1; m <= l; m++)
  16.     {
  17.             if (h % m == 0 && j % m == 0)
  18.             {
  19.                 cout << m << "  ";
  20.             }
  21.     }
  22.         system("pause");
  23.         return 0;
  24. }
複製代碼

TOP

返回列表