標題:
二數求最小公倍數 (break敘述)
[打印本頁]
作者:
tonyh
時間:
2015-7-24 20:43
標題:
二數求最小公倍數 (break敘述)
本帖最後由 tonyh 於 2015-7-24 21:02 編輯
讓使用者任意輸入兩個正整數, 求它們的最小公倍數.
提示: 加入break敘述, 使符合條件時, 跳出迴圈.
[attach]1314[/attach]
本帖隱藏的內容需要回復才可以瀏覽
作者:
林侑成
時間:
2015-7-24 21:04
本帖最後由 林侑成 於 2015-7-24 21:05 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x, y, bigger;
cout<<"請輸入第一個數: ";
cin>>x;
cout<<"請輸入第二個數: ";
cin>>y;
bigger=x>y?x:y;
cout<<x<<"與"<<y<<"的最小公倍數是: ";
for(int i=bigger; i<=x*y; i++)
{
if(i%x==0 && i%y==0)
{
cout<<i<<endl;
break;
}
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
沈子耕
時間:
2015-7-24 21:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
re:
int x, y;
cout<<"請輸入第一個數: ";
cin>>x;
cout<<"請輸入第二個數: ";
cin>>y;
cout<<x<<"和"<<y<<"的最小公倍數為:";
for(int i=x>y?x:y; i<=x*y; i++){
if(i%x==0 && i%y==0){
cout<<i<<endl;
break;
}
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
曾挺桂
時間:
2015-7-24 21:05
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x, y, big;
cout<<"請輸入第一個數: ";
cin>>x;
cout<<"請輸入第二個數: ";
cin>>y;
bigger=x>y?x:y;
cout<<x<<"與"<<y<<"的最小公倍數是: ";
for(int i=big; i<=x*y; i++)
{
if(i%x==0 && i%y==0)
{
cout<<i<<endl;
break;
}
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
陳思惟
時間:
2015-7-24 21:05
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x, y, b;
cout<<"第一個數: ";
cin>>x;
cout<<"第二個數: ";
cin>>y;
b=x>y?x:y;
cout<<x<<"與"<<y<<"最小公倍數: ";
for(int i=b; i<=x*y; i++)
{
if(i%x==0 && i%y==0)
{
cout<<i<<endl;
break;
}
}
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2