本帖最後由 蔡季樺 於 2016-4-26 17:18 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int x,y,z=0,smaller;
- cout<<"請輸入第一個正整數: ";
- cin>>x;
- cout<<"請輸入第二個正整數: ";
- cin>>y;
- smaller=(x<y)?x:y;
- cout<<"兩數的公因數有:";
-
- for(int i=1;i<=smaller;i++)
- {
- if(x%i==0 && y%i==0)
- {
- cout<<i<<" ";
- z++;
- }
- }
- cout<<endl;
- cout<<x<<"與"<<y<<"有"<<z<<"個公因數"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |