標題:
因數分解 (四) - 兩數求公因數
[打印本頁]
作者:
陳品肇
時間:
2018-12-7 22:44
標題:
因數分解 (四) - 兩數求公因數
讓使用者任意輸入兩正整數, 電腦回應它們有那些公因數, 以及共有幾個公因數.
執行畫面如下:
[attach]5445[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
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<<"\n總共有"<<sum<<"個!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭元富
時間:
2018-12-8 11:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x, y, small, sum=0;
cout<<"請輸入第一個數: ";
cin>>x;
cout<<"請輸入第二個數: ";
cin>>y;
small=(x<y)?x:y;
cout<<x<<"與"<<y<<"的公因數有: ";
for(int i=1; i<=small; i++)
{
if(x%i==0 && y%i==0)
{
cout<<i<<" ";
sum++;
}
}
cout<<"\n總共有"<<sum<<"個!"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
田宇任
時間:
2018-12-8 11:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x,y,z,a=0;
cout<<"請輸入第一個數:";
cin>>x;
cout<<"輸入第二個數:";
cin>>y;
z = (x>y)?y:x;
cout<<x<<"與"<<y<<"的公因數:";
for(int i=1;i<=z;i++)
{
if(x%i==0 && y%i==0)
{
cout<< i<<" ";
a++;
}
}
cout<<endl;
cout<<"共有"<<a<<"個!"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
楊侍穎
時間:
2018-12-8 11:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
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<<"\n總共有"<<sum<<"個!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蘇昱全
時間:
2018-12-8 11:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x,y,small,count=0;
cout<<"請輸入第一個數: ";
cin>>x;
cout<<"請輸入第二個數: ";
cin>>y;
small=(x<y)?x:y;
cout<<x<<"與"<<y<<"的公因數有: ";
for(int i=1;i<=small;i++)
{
if(x%i==0 && y%i==0)
{
cout<<i<<" ";
count++;
}
}
cout<<endl;
cout<<"總共有"<<count<<"個!"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
陳潔歆
時間:
2018-12-8 11:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y,smaller,sum=0;
cout<<"請輸入第一個數: ";
cin>>x;
cout<<"請輸入第二個數: ";
cin>>y;
smaller=(x>y)?y:x;
cout<<x<<"和"<<y<<"的公因數有: ";
for(int i=1; i<=smaller; i++)
{
if(x%i==0 && y%i==0)
{
cout<<i<<" ";
sum++;
}
}
cout<<endl;
cout<<"共有"<<sum<<"個"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
湯郡一
時間:
2018-12-12 17:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
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<<"\n總共有"<<sum<<"個!"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2