本帖最後由 tonyh 於 2011-12-3 16:12 編輯
讓使用者任意輸入三個正整數, 電腦回應它們的公因數有那些, 以及共有幾個公因數.- #include<iostream>
- using namespace std;
- int main()
- {
- int a, b, c, d, e, num=0;
- cout<<"請輸入第一個數: ";
- cin>>a;
- cout<<"請輸入第二個數: ";
- cin>>b;
- cout<<"請輸入第三個數: ";
- cin>>c;
- d=(a<b)?a:b;
- e=(d<c)?d:c;
- cout<<a<<","<<b<<"與"<<c<<"的公因數有: ";
- for(int i=1; i<=e; i++)
- {
- if(a%i==0 && b%i==0 && c%i==0)
- {
- cout<<i<<" ";
- num++;
- }
- }
- cout<<endl;
- cout<<"總共有"<<num<<"個公因數"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |