本帖最後由 鄭繼威 於 2022-12-3 14:05 編輯
續有哪些因數 (四) - 求公因數
把最後的i輸出出來而已
讓使用者任意輸入兩個正整數, 求它們的最大公因數.
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- re:
- int x, y, smaller, gcd;
- cout<<"請輸入第一個數: ";
- cin>>x;
- cout<<"請輸入第二個數: ";
- cin>>y;
- //取得最小的數字
- smaller=x<y?x:y;
- cout<<x<<"與"<<y<<"的最大公因數為: ";
- //1~smaller
- for(int i=1; i<=smaller; i++)
- {
- if(x%i==0 && y%i==0)
- {
- gcd=i; //gcd一直被取代
- }
- }
- cout<<gcd<<endl;
- goto re;
- return 0;
- }
複製代碼 |