本帖最後由 tonyh 於 2011-12-5 10:12 編輯
讓使用者任意輸入兩正整數, 電腦回應它們的公因數有那些, 由大而小列出.- #include<iostream>
- using namespace std;
- int main()
- {
- int a, b, min;
- cout<<"請輸入第一個數: ";
- cin>>a;
- cout<<"請輸入第二個數: ";
- cin>>b;
- min=(a<b)?a:b;
- cout<<a<<"與"<<b<<"的公因數有: ";
- for(int i=min; i>=1; i--)
- {
- if(a%i==0 && b%i==0)
- {
- cout<<i<<" ";
- }
- }
- cout<<endl;
- system("pause");
- return 0;
- }
複製代碼 |