讓使用者任意輸入兩個正整數, 求它們的最大公因數.
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int x, y, smaller, maxf;
- cout<<"請輸入第一個數: ";
- cin>>x;
- cout<<"請輸入第二個數: ";
- cin>>y;
- smaller=(x<y)?x:y;
- for(int i=1; i<=smaller; i++)
- {
- if(x%i==0 && y%i==0)
- {
- maxf=i;
- }
- }
- cout<<x<<"與"<<y<<"的最大公因數是: "<<maxf<<endl;
- system("pause");
- return 0;
- }
複製代碼 |