標題:
[作業] 求最小公倍數 (break敘述)
[打印本頁]
作者:
方浩葦
時間:
2024-7-6 12:03
標題:
[作業] 求最小公倍數 (break敘述)
讓使用者任意輸入兩個正整數,求它們的最小公倍數。
提示:加入break敘述,使符合條件時,跳出迴圈。
本帖隱藏的內容需要回復才可以瀏覽
作者:
李唯銘
時間:
2024-7-6 15:53
#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=z; i>=1; i++){
if(i%x==0 && i%y==0){
a=i;
break;
}
}
cout<<"兩數的最小公倍數為"<<a<<endl;
system ("pause");
goto re;
return 0;
}
複製代碼
作者:
劉奕劭
時間:
2024-7-6 16:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,d;
cout<<"輸入第一個數"<<endl;
cin>>a;
cout<<"輸入第二個數"<<endl;
cin>>b;
c=a<b?a:b;
for(int i=c;i>=1;i++){
if(i%a==0 && i%b==0){
d=i;
break;}}
cout<<"兩數的最小公倍數為"<<d<<endl;
system("pause");
return 0;
}
複製代碼
作者:
高湘庭
時間:
2024-7-6 16:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int x,y,bigger,tmp;
re:
cout<<"請依序輸入x,y";
cin>>x>>y;
bigger=x>y?x:y;
cout<<x<<","<<y<<"最小公倍數=";
for(int i=bigger;i<=x*y;i++)
{
if(i%x==0&&i%y==0)
{
tmp=i;
break;
}
}
cout<<tmp;
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
林少謙
時間:
2024-7-6 16:26
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x,y,z,a,b;
cout<<"請輸入第一個正整數:";
cin>>x;
cout<<"請輸入第二個正整數:";
cin>>y;
a=x<y?x:y;
cout<<x<<"和"<<y<<"的最小公倍數是:";
for (int i=a ; i>=1 ; i--)
{
if (x%i==0&&y%i==0)
{
b=i;
break;
}
}
cout<<x*y/b<<endl;
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪榮辰
時間:
2024-7-7 14:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x, y, z, tmp;
cout<<"輸入第一個數: ";
cin>>x;
cout<<"輸入第二個數: ";
cin>>y;
z=x<y?x:y;
for(int i=z; i>=1; i++)
{
if(i%x==0 && i%y==0)
{
tmp=i;
break;
}
}
cout<<x<<"與"<<y<<"的最小公倍數是: "<<tmp<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
陳妍蓁
時間:
2024-7-12 22:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int a,b,tmp;
cout<<"請輸入兩數"<<endl;
cin>>a>>b;
cout<<a<<" "<<b<<"的最小公倍數為: ";
for(int i=a;i<=a*b;i++){
if(i%a==0 && i%b==0){
tmp=i;
break;
}
}
cout<<tmp<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2