標題:
因數分解 (六) - 求最大公因數 (break敘述)
[打印本頁]
作者:
tonyh
時間:
2017-12-20 16:45
標題:
因數分解 (六) - 求最大公因數 (break敘述)
本帖最後由 tonyh 於 2017-12-20 16:51 編輯
利用break敘述, 於符合條件時, 立即跳出迴圈.
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a,b,smaller,gcd;
cout<<"輸入第一正整數: ";
cin>>a;
cout<<"輸入第二正整數: ";
cin>>b;
smaller=a<b?a:b;
for(int i=smaller; i>=1; i--)
{
if(a%i==0 && b%i==0)
{
gcd=i;
break; //立即跳出所在迴圈
}
}
cout<<a<<" 與 "<<b<<"的最大公因數為: "<<gcd<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
蒙鎧柔
時間:
2017-12-20 16:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a,b,smaller,gcd;
cout<<"輸入第一正整數: ";
cin>>a;
cout<<"輸入第二正整數: ";
cin>>b;
smaller=a<b?a:b;
for(int i=smaller;i>=1;i--)
{
if(a%i==0 && b%i==0)
{
gcd=i;
break;
}
}
cout<<a<<" 與 "<<b<<"的公因數有: "<<gcd<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
黃宇綸
時間:
2017-12-20 16:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a,b,smaller,gcd;
cout<<"輸入第一正整數: ";
cin>>a;
cout<<"輸入第二正整數: ";
cin>>b;
smaller=a<b?a:b;
for(int i=smaller; i>=1; i--)
{
if(a%i==0 && b%i==0)
{
gcd=i;
break;
}
}
cout<<a<<" 與 "<<b<<"的最大公因數為: "<<gcd<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
黃宇瑄
時間:
2017-12-20 16:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
system("cls");
int a, b, smaller, gcd;
cout<<"請輸入第一個數: ";
cin>>a;
cout<<"請輸入第二個數: ";
cin>>b;
smaller=a<b?a:b;
for(int i=smaller; i>=1; i++)
{
if(a%i==0 && b%i==0)
{
gcd=i;
break;
}
}
cout<<a<<"與"<<b<<"的最大公因數是: "<<gcd<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
李沛昂
時間:
2017-12-20 17:05
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,smaller,gcd;
cout<<"輸入第一正整數: ";
cin>>a;
cout<<"輸入第二正整數: ";
cin>>b;
smaller=a>b?a:b;
for(int i=smaller;i>=1;i--)
{
if(a%i==0 && b%i==0)
{
gcd=i;
break;
}
}
cout<<a<<"與"<<b<<"的最大公因數是: "<<gcd<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2