返回列表 發帖
本帖最後由 周雍程 於 2013-12-28 16:36 編輯
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     int a, b, c,d,e,bigger, mind;
  7.     cout<<"請輸入第1個數: ";
  8.     cin>>a;
  9.     cout<<"請輸入第2個數: ";
  10.     cin>>b;
  11.     cout<<"請輸入第3個數: ";
  12.     cin>>c;
  13.     bigger=(a>b)?a:b;
  14.     e =(c>d)?c:d;   
  15.     for(int i=e; i<=a*b*c; i++)
  16.     {
  17.        if(i%a==0 && i%b==0 && i%c==0)
  18.        {
  19.            mind=i;
  20.            break;
  21.        }
  22.     }
  23.     cout<<a<<"與"<<b<<"與"<<c<<"最小公倍數是:"<<mind<<endl;
  24.     system("pause");
  25.     return 0;
  26. }
複製代碼

TOP

返回列表