標題:
[隨堂測驗] 因數分解 (五) - 求最大公因數
[打印本頁]
作者:
方浩葦
時間:
2024-6-28 16:18
標題:
[隨堂測驗] 因數分解 (五) - 求最大公因數
讓使用者任意輸入兩個正整數, 求它們的最大公因數.
本帖隱藏的內容需要回復才可以瀏覽
作者:
高湘庭
時間:
2024-6-29 14:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
re:
int a,b,smaller,op;
cout<<"請輸入第一個數";
cin>>a;
cout<<"請輸入第二個數";
cin>>b;
smaller=a<b?a:b;
for(int i=1;i<=smaller;i++)
{
if(a%i==0&&b%i==0)
{
op=i;
}
}
cout<<op<<endl;
cout<<endl;
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
劉奕劭
時間:
2024-7-6 14:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int a,b,c,d;
cout<<"請輸入第一個數:";
cin>>a;
cout<<"請輸入第二個數:";
cin>>b;
c=a<b?a:b;
for(int i=1;i<=c;i++)
{
if(a%i==0&&b%i==0){
d=i;
}
}
cout<<a<<"跟"<<b<<"的最大公因數為"<<d<<endl;
system("pause");
return 0;
}
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int a,b,c,d;
cout<<"請輸入第一個數:";
cin>>a;
cout<<"請輸入第二個數:";
cin>>b;
c=a<b?a:b;
for(int i=1;i<=c;i++)
{
if(a%i==0&&b%i==0){
d=i;
}
}
cout<<a<<"跟"<<b<<"的最大公因數為"<<d<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李唯銘
時間:
2024-7-6 14:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x,y,z,a;
cout<<"輸入第一個數"<<endl;
cin>>x;
cout<<"輸入第二個數"<<endl;
cin>>y;
z=x>y?x:y;
for(int i=1; i<=z; i++){
if(x%i==0 && y%i==0){
a=i;
}
}
cout<<"兩數的最大公因數為"<<a<<endl;
system ("pause");
goto re;
return 0;
}
複製代碼
作者:
林少謙
時間:
2024-7-6 14:50
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x,y,smaller,a;
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)
{
a=i;
}
}
cout<<a;
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳妍蓁
時間:
2024-7-6 14:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int x,y,a,b;
cout<<"請輸入第一個數"<<endl;
cin>>x;
cout<<"請輸入第二個數"<<endl;
cin>>y;
cout<<x<<"和"<<y<<"的最大公因數:";
a=x<y?x:y;
for(int i=1;i<=a;i++){
if(x%i==0&&y%i==0){
b=i;
}
}
cout<<b<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪榮辰
時間:
2024-7-6 15:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x, y, z, smaller;
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)
{
z=i;
}
}
cout<<x<<"與"<<y<<"的最大公因數為: "<<z<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李偈睿
時間:
2024-7-13 15:36
本帖最後由 李偈睿 於 2024-7-13 15:38 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a,b,small,sum;
cout<<"請輸入第一個數: ";
cin>>a;
cout<<"請輸入第二個數: ";
cin>>b;
small=a<b?a:b;
cout<<a<<"與"<<b<<"的最大公因數為: ";
for(int i=1; i<=small; i++)
{
if(a%i==0 && b%i==0)
{
sum=i;
}
}
cout<<sum<<endl<<endl;
goto re;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2