[隨堂練習]因數分解 (五) - 兩數求最大公因數
本帖最後由 陳品肇 於 2021-12-25 10:41 編輯
讓使用者任意輸入兩個正整數, 求它們的最大公因數.
- #include <iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int x;
- int y;
- cout<<"請輸入第一個一正整數:";
- cin>>x;
- cout<<"請輸入第二個一正整數:";
- cin>>y;
- cout<<x<<"與"<<y<<"的最大公因數:";
- // 當你這個變數要拿來做加減的時候 一定要初始化給一個值
- int count = 0;
- // x大於y 把y給tmp 否則 把x給tmp
- int tmp = x>y ? y : x;
-
- for(int i=tmp;i>=1;i--)
- {
- // 當i可以被 x 與 y整除,那它就是公因數
- // 當count 裡面還沒有數值才進來
- if(x%i==0 && y%i==0 && count ==0)
- {
- cout<<i<<" ";
- count++;
- }
- }
- cout<<endl;
- system("pause");
- return 0;
- }
複製代碼 |
附件:
您需要登錄才可以下載或查看附件。沒有帳號?註冊