標題:
因數分解 (四) - 求公因數
[打印本頁]
作者:
tonyh
時間:
2016-12-10 13:54
標題:
因數分解 (四) - 求公因數
本帖最後由 tonyh 於 2019-8-31 10:42 編輯
讓使用者任意輸入兩正整數, 電腦回應它們有那些公因數, 以及共有幾個公因數.
執行畫面如下:
#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;
}
複製代碼
作者:
黃宥鈞
時間:
2016-12-10 14:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x, y, z=0;
cout<<"請輸入兩個正整數: ";
cin>>x>>y;
cout<<x<<"和"<<y<<"的公因數有: ";
if(x>y)
{
for(int i=1; i<=x; i++)
{
if(x%i==0 && y%i==0)
{
cout<<i<<" ";
z++;
}
}
}else if(y>x)
{
for(int i=1; i<=y; i++)
{
if(x%i==0 && y%i==0)
{
cout<<i<<" ";
z++;
}
}
}else
{
for(int i=1; i<=y; i++)
{
if(x%i==0 && y%i==0)
{
cout<<i<<" ";
z++;
}
}
}
cout<<endl<<"總共有"<<z<<"個!"<<endl<<endl;
goto re;
return 0;
}
複製代碼
作者:
許紘誌
時間:
2016-12-10 14:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
system("cls");
int a, b, smaller, sum=0;
cout<<"請輸入第ㄧ個正整數: ";
cin>>a;
cout<<"請輸入第二個正整數: ";
cin>>b;
smaller=a<b?a:b;
cout<<a<<"跟"<<b<<"的正公因數有: ";
for(int i=1; i<=smaller; i++)
{
if(a%i==0 && b%i==0)
{
cout<<i<<" ";
sum+=1;
}
}
cout<<endl<<"共有"<<sum<<"個!"<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
朱聿謙
時間:
2016-12-10 14:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
system("cls");
int a, b, smaller, sum=0;
cout<<"輸入第ㄧ個數: ";
cin>>a;
cout<<"輸入第二個數: ";
cin>>b;
smaller=a<b?a:b;
cout<<a<<"跟"<<b<<"的正公因數有: ";
for(int i=1; i<=smaller; i++)
{
if(a%i==0 && b%i==0)
{
cout<<i<<" ";
sum+=1;
}
}
cout<<endl<<"共有"<<sum<<"個"<<endl;
system("pause");
goto re;
return 0;
}
[/quote][/quote]
複製代碼
作者:
蔡幸融
時間:
2016-12-10 14:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x, y, sm,sum=0;
cout<<"請輸入第一個數: ";
cin>>x;
cout<<"請輸入第二個數: ";
cin>>y;
sm=x<y?x:y;
cout<<endl<<x<<"與"<<y<<"的公因數有: ";
for(int z=1; z<=sm; z++)
{
if(x%z==0 && y%z==0)
{
cout<<z<<" ";
sum++;
}
}
cout<<endl<<"共有"<<sum<<"個!"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
吳晉榕
時間:
2016-12-10 15:00
本帖最後由 吳晉榕 於 2016-12-10 15:14 編輯
#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;
goto re;
return 0;
}
複製代碼
作者:
康湍榆
時間:
2016-12-10 15:04
#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;
}
複製代碼
作者:
洪榜蔓
時間:
2016-12-10 15:05
#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;
system("pause");
return 0;
}
複製代碼
作者:
吳承勳
時間:
2016-12-10 15:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x, y, sum=0, smaller;
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<<"共有"<<sum<<"個"<<endl;
goto re;
return 0;
}
複製代碼
作者:
譚暐霖
時間:
2016-12-16 19:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x, y, smaller, sum=0;
cout<<"Please enter a number: ";
cin>>x;
cout<<"Please enter another number: ";
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;
}
複製代碼
作者:
蕭澧邦
時間:
2016-12-16 19:18
#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;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2