標題:
因數分解 - 二數求最大公因數
[打印本頁]
作者:
tonyh
時間:
2019-8-31 11:12
標題:
因數分解 - 二數求最大公因數
本帖最後由 tonyh 於 2019-8-31 11:35 編輯
讓使用者任意輸入兩個正整數, 求它們的最大公因數.
本帖隱藏的內容需要回復才可以瀏覽
作者:
曾宥程
時間:
2019-8-31 11:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y,smaller,gcd;
cout<<"請輸入第一個數: ";
cin>>x;
cout<<"請輸入第二個數: ";
cin>>y;
smaller=x<y?x:y;
for(int i=1;i<=smaller;i++)
{
if(x%i==0 && y%i==0)
{
gcd=i;
}
}
cout<<x<<"跟"<<y<<"的最大公因數是: "<<gcd<<endl;
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
郭哲維
時間:
2019-8-31 11:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x, y, smaller, gcd;
cout<<"請輸入第一個數: ";
cin>>x;
cout<<"請輸入第二個數: ";
cin>>y;
smaller=x<y?x:y;
for(int i=1; i<=smaller; i++)
{
if(x%i==0 && y%i==0)
{
gcd=i;
}
}
cout<<x<<"與"<<y<<"的最大公因數是: "<<gcd<<endl;
goto re;
return 0;
}
複製代碼
作者:
蔡少宇
時間:
2019-8-31 11:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x, y, smaller, gcd;
cout<<"請輸入第一個數: ";
cin>>x;
cout<<"請輸入第二個數: ";
cin>>y;
smaller=x<y?x:y;
for(int i=1; i<=smaller; i++)
{
if(x%i==0 && y%i==0)
{
gcd=i;
}
}
cout<<x<<"與"<<y<<"的最大公因數是: "<<gcd<<endl;
cout<<endl<<endl;
goto re;
return 0;
}
複製代碼
作者:
鄭羽捷
時間:
2019-8-31 11:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x, y, smaller, gcd;
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<<" ";
gcd=i;
}
}
cout<<x<<"與"<<y<<"的最大公因數是"<<gcd<<endl;
goto re;
return 0;
}
複製代碼
作者:
王翎璇
時間:
2019-8-31 11:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x, y, smaller, gcd;
cout<<"請輸入第一個數:";
cin>>x;
cout<<"請輸入第二個數:";
cin>>y;
smaller=x<y?x:y;
for(int i=1; i<=smaller; i++)
{
if(x%i==0 && y%i==0)
{
gcd=i;
}
}
cout<<x<<"與"<<y<<"的最大公因數是: "<<gcd<<endl<<endl;
goto re;
return 0;
}
複製代碼
作者:
林孟蓁
時間:
2019-8-31 11:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x, y, smaller, gcd;
cout<<"請輸入第一個整數: ";
cin>>x;
cout<<"請輸入第二個數: ";
cin>>y;
smaller=x<y?x:y;
for(int i=1; i<=smaller; i++)
{
if(x%i==0 && y%i==0)
{
gcd=i;
}
}
cout<<x<<"與"<<y<<"的最大公因數"<<gcd<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
林孟蓁
時間:
2019-8-31 11:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x, y, smaller, gcd;
cout<<"請輸入第一個整數: ";
cin>>x;
cout<<"請輸入第二個數: ";
cin>>y;
smaller=x<y?x:y;
for(int i=smaller; i>=1; i--)
{
if(x%i==0 && y%i==0)
{
gcd=i;
break;
}
}
cout<<x<<"與"<<y<<"的最大公因數"<<gcd<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
駱顗安
時間:
2020-7-2 17:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i,j;
cout<<"請輸入第一個數:";
cin>>i;
cout<<"請輸入第二個數:";
cin>>j;
cout<<i<<"與"<<j<<"的最大公因數是:";
int k=i,l=0;
while(l<=0)
{
if(i%k==0&&j%k==0)
{
cout<<k<<" ";
l=l+1;
}
k=k-1;
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2