返回列表 發帖

034 三數字找出最大公因數

輸入三個數字並輸出三個數字的最大公因數

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.                 int x,y,z,a,b = 0;
  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.                                 b = i;
  21.                         }        
  22.                 }
  23.                 cout << b << 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 i;
  9.     cout << "請輸入一個數字";
  10.     cin >> h;
  11.     cout << "請輸入二個數字";
  12.     cin >> j;
  13.     cout << "請輸入三個數字";
  14.     cin >> i;
  15.     cout << "他們的最大公因數是:";
  16.     int l;
  17.     l = (h < j)? h : j;
  18.     l = (l < i)? l : i;
  19.     int max;
  20.     for (int m = 1; m <= l; m++)
  21.     {
  22.         if (h % m == 0 && j % m == 0 && i % m == 0)
  23.         {
  24.             max = m;
  25.         }
  26.     }
  27. cout << max << endl;
  28. system("pause");
  29.    return 0;
  30. }
複製代碼

TOP

返回列表