本帖最後由 周雍程 於 2013-12-27 19:39 編輯
- #include <iostream>
- #include <cstdlib>
- using namespace std;
- int main()
- {
- int a, b,smaller, n=0;
- cout<<"請輸入第1個數: ";
- cin>>a;
- cout<<"請輸入第2個數: ";
- cin>>b;
- smaller=(a<b)?a:b;
- cout<<a<<"與"<<b<<"的公因數有"<<endl;
- for(int i=1;i<=smaller; i++)
- {
- if(a%i==0 && b%i==0)
- {
- cout<<i<<" ";
- n++;
- }
- }
- cout<<"總共有"<<n<<"個公因數"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |