標題:
因數分解 (六) - 求最大公因數 (break敘述)
[打印本頁]
作者:
tonyh
時間:
2016-12-17 13:57
標題:
因數分解 (六) - 求最大公因數 (break敘述)
本帖最後由 tonyh 於 2019-10-31 21:19 編輯
利用break敘述,於符合條件時,立即跳出迴圈。
作者:
許紘誌
時間:
2016-12-19 14:59
#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=smaller; i>=1; i--)
{
if(x%i==0 && y%i==0)
{
gcd=i;
break;
}
}
cout<<gcd<<endl<<endl;
goto re;
return 0;
}
複製代碼
作者:
黃宥鈞
時間:
2016-12-19 18: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;
cout<<x<<"與"<<y<<"的最大公因數為: ";
for(int i=smaller; i>=1; i--)
{
if(x%i==0 && y%i==0)
{
gcd=i;
break;
}
}
cout<<gcd<<endl<<endl;
goto re;
return 0;
}
複製代碼
作者:
朱聿謙
時間:
2016-12-24 13:46
#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=smaller; i>=1; i--)
{
if(x%i==0 && y%i==0)
{
gcd=i;
break;
}
}
cout<<gcd<<endl<<endl;
goto re;
return 0;
}
複製代碼
作者:
蕭澧邦
時間:
2016-12-24 14:08
#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=smaller; i>=1; i--)
{
if(x%i==0 && y%i==0)
{
gcd=i;
break;
}
}
cout<<gcd<<endl<<endl;
goto re;
return 0;
}
複製代碼
作者:
康湍榆
時間:
2016-12-24 14:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x, y, smaller, gcd=0;
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<<endl;
goto re;
return 0;
}
複製代碼
作者:
吳承勳
時間:
2016-12-24 14:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x, y, smaller, gcd=0;
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;
return 0;
}
複製代碼
作者:
蔡幸融
時間:
2016-12-24 14:22
#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=smaller; i>=1; i--)
{
if(x%i==0 && y%i==0)
{
gcd=i;
break;
}
}
cout<<gcd<<endl<<endl;
goto re;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2