本帖最後由 周雍程 於 2013-12-28 16:36 編輯
- #include <iostream>
- #include <cstdlib>
- using namespace std;
- int main()
- {
- int a, b, c,d,e,bigger, mind;
- cout<<"請輸入第1個數: ";
- cin>>a;
- cout<<"請輸入第2個數: ";
- cin>>b;
- cout<<"請輸入第3個數: ";
- cin>>c;
- bigger=(a>b)?a:b;
- e =(c>d)?c:d;
- for(int i=e; i<=a*b*c; i++)
- {
- if(i%a==0 && i%b==0 && i%c==0)
- {
- mind=i;
- break;
- }
- }
- cout<<a<<"與"<<b<<"與"<<c<<"最小公倍數是:"<<mind<<endl;
- system("pause");
- return 0;
- }
複製代碼 |