返回列表 發帖
本帖最後由 林宇翔 於 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

返回列表