返回列表 發帖

032 三數字求公因數

輸入三個數字,並列出三個數字的所有公因數。

本帖最後由 林宇翔 於 2014-4-5 14:35 編輯
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.                 int x,y,z,a;
  7.                 cout << "請輸入第一個數字;" ;
  8.                 cin >> x;
  9.         cout << "請輸入第二個數字;" ;
  10.                 cin >> y;
  11.                 cout << "請輸入第三個數字;" ;
  12.                 cin >> z;
  13.                 a= (x < y)? x : y;
  14.                 a= (a < z)? a : z;
  15.                 cout << "這些數字的公因數有:";
  16.                 for(int i = 1; i <= z; i ++)
  17.                 {
  18.                         if (x % i == 0 && y % i == 0 && z % i == 0)
  19.                         {
  20.                                  cout << i << "  ";
  21.                         }        
  22.                 }
  23.                 cout << endl;
  24.             system ("pause");
  25.         return 0;
  26. }
複製代碼

TOP

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

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

TOP

返回列表