標題:
因數分解 (三) - 求公因數
[打印本頁]
作者:
張翼安
時間:
2016-1-15 22:49
標題:
因數分解 (三) - 求公因數
讓使用者任意輸入兩正整數, 電腦回應它們有那些公因數, 以及共有幾個公因數.
執行畫面如下:
作者:
蔡季樺
時間:
2016-4-26 16:49
本帖最後由 蔡季樺 於 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;
}
複製代碼
作者:
張文擇
時間:
2016-4-26 17:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int c,b,a=0;
cout<<"請輸入第一個正整數: ";
cin>>c;
cout<<"請輸入第二個正整數: ";
cin>>b;
cout<<"兩個整數的公因數有:";
for(int h=1;h<=c+b;h++)
{
if(c%h==0&&b%h==0)
{
cout<<h<<" ";
F++;
}
} cout<<endl;
cout<<c<<"和"<<b<<"有"<<F<<"個公因數"<<endl
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2