標題:
三數中找出最大的數
[打印本頁]
作者:
tonyh
時間:
2015-6-5 19:59
標題:
三數中找出最大的數
本帖最後由 tonyh 於 2015-6-5 20:27 編輯
[attach]1272[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a,b,c,d,e;
cout<<"請依序輸入三個數字: ";
cin>>a>>b>>c;
d=a>b?a:b;
e=d>c?d:c;
cout<<"三數中最大的數為: "<<e<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
曾挺桂
時間:
2015-6-5 20:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a,b,c,d,e;
cout<<"請輸入三數: ";
cin>>a>>b>>c;
d=a>b?a:b;
e=d>c?d:c;
cout<<"三術中最大數為: "<<e<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
沈子耕
時間:
2015-6-5 20:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
re:
int a, b, c, d, e;
cout<<"請依序輸入三個數字 ";
cin>>a>>b>>c;
d=a>b?a:b;
e=d>c?d:c;
cout<<"三數中最大的是 "<<e<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
陳思惟
時間:
2015-6-5 20:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a,b,c,d,e;
cout<<"三數比大小"<<endl;
cout<<"請輸入三數: "<<endl;
cin>>a>>b>>c;
d=a>b?a:b;
e=d>c?d:c;
cout<<"最大的數為: "<<e<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2