標題:
[作業] 三數求最小公倍數 (break敘述)
[打印本頁]
作者:
tonyh
時間:
2014-12-20 11:49
標題:
[作業] 三數求最小公倍數 (break敘述)
本帖最後由 tonyh 於 2015-1-10 11:02 編輯
讓使用者任意輸入三個正整數, 求它們的最小公倍數.
提示: 加入break敘述, 使符合條件時, 跳出迴圈.
[attach]1091[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b, c, d, e;
cout<<"請輸入第一個數: ";
cin>>a;
cout<<"請輸入第二個數: ";
cin>>b;
cout<<"請輸入第三個數: ";
cin>>c;
d=(a>b)?a:b;
e=(d>c)?d:c; //e is the biggist
cout<<a<<","<<b<<"與"<<c<<"的最小公倍數為: ";
for(int i=e; i<=a*b*c; i++)
{
if(i%a==0 && i%b==0 && i%c==0)
{
cout<<i<<endl;
break;
}
}
system("pause");
return 0;
}
複製代碼
作者:
李知易
時間:
2014-12-20 12:02
此帖僅作者可見
作者:
謝瀞儀
時間:
2014-12-20 14:55
此帖僅作者可見
作者:
洪振庭
時間:
2015-1-10 11:02
此帖僅作者可見
作者:
李大全
時間:
2015-1-10 11:03
此帖僅作者可見
作者:
梁和雋
時間:
2015-1-10 11:07
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2