本帖最後由 葉桔良 於 2022-5-14 16:13 編輯
讓使用者任意輸入兩正整數, 電腦回應它們有那些公因數, 以及共有幾個公因數.
執行畫面如下:
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- re:
- int x, y, smaller, sum=0;
- cout<<"請輸入第一個數: ";
- cin>>x;
- cout<<"請輸入第二個數: ";
- cin>>y;
- smaller=x<y?x:y;
- cout<<x<<"與"<<y<<"的公因數有: ";
- for(int i=1; i<=smaller; i++)
- {
- if(x%i==0 && y%i==0)
- {
- cout<<i<<" ";
- sum++;
- }
- }
- cout<<endl<<"共有"<<sum<<"個!"<<endl<<endl;
- goto re;
- return 0;
- }
複製代碼 |