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

TOP

返回列表