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

TOP

返回列表