本帖最後由 陳品肇 於 2019-6-15 11:40 編輯
讓使用者任意輸入兩正整數, 電腦回應它們有那些公因數, 以及共有幾個公因數.
執行畫面如下:
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int n,n2,tmp,count=0;
- cout<<"請輸入第一個數: ";
- cin>>n;
- cout<<"請輸入第二個數: ";
- cin>>n2;
- cout<<n<<"與"<<n2<<"的公因數有:";
- tmp = (n>n2)?n2:n; //n是否大於n2,n2丟給tmp否則 就把n丟給tmp
- for(int i=1;i<=tmp;i++)
- {
- if(n%i==0 && n2%i==0) //符合因數
- {
- cout<<i<<" ";
- count++; // 個數累加
- }
- }
- cout<<endl;
- cout<<"總共有"<<count<<"個!"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |