標題:
因數分解 (四) - 求公因數
[打印本頁]
作者:
tonyh
時間:
2020-10-17 18:47
標題:
因數分解 (四) - 求公因數
讓使用者任意輸入兩正整數, 電腦回應它們有那些公因數, 以及共有幾個公因數.
執行畫面如下:
#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;
}
複製代碼
作者:
王首二
時間:
2020-10-17 20:45
#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;
}
作者:
王宇崴
時間:
2020-10-17 20:45
#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;
}
複製代碼
作者:
王首二
時間:
2020-10-17 20:45
#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;
}
複製代碼
作者:
余柏緯
時間:
2020-10-17 20:46
#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<<"共有"<<sum<<"個因數!"<<endl;
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
朱奕祐
時間:
2020-10-17 20:47
#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;
}
複製代碼
作者:
俞成章
時間:
2020-10-17 20:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y,z=0,a;
cout<<"輸入一正整數"<<endl;
cin>>x;
cout<<"輸入一正整數"<<endl;
cin>>y;
a=x<y?x:y;
cout<<x<<"與"<<y<<"的因數有";
for(int i=1;i<=a;i++)
{
if(x%i==0 && y%i==0)
{
cout<<i<<" ";
z++;
}
}
cout<<"總共有"<<z<<"個數";
system("pause");
return 0;
}
複製代碼
作者:
林鼎傑
時間:
2020-10-17 20:51
#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<<"共有"<<sum<<"個!"<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
黃子倢
時間:
2020-10-17 20:53
#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<<endl<<"共有"<<sum<<"個!"<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
王秉鈞
時間:
2020-10-17 20:57
#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;
}
複製代碼
作者:
許洧熏
時間:
2020-10-17 21:06
本帖最後由 許洧熏 於 2020-10-24 08:49 編輯
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2