- #include <iostream>
- #include <cstdlib>
- using namespace std;
- int main()
- {
- int a,b,smaller,bigger,n=0;
- cout<<"請輸入第1個數: ";
- cin>>a;
- cout<<"請輸入第2個數: ";
- cin>>b;
- cout<<a<<"與"<<b<<"的公因數有:"<<endl;
- smaller=(a<b)?a:b;
- for(int i=smaller;i>=1; i--)
- {
- if(a%i==0 && b%i==0)
- {
- cout<<i<<" ";
- n++;
- }
- }
- cout<<endl<<"總共有"<<n<<"個!"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |