標題:
[隨堂測驗] 四數中找出最大的數
[打印本頁]
作者:
tonyh
時間:
2017-11-22 17:10
標題:
[隨堂測驗] 四數中找出最大的數
本帖最後由 tonyh 於 2019-6-30 15:11 編輯
作者:
蒙鎧柔
時間:
2017-11-22 17:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a,b,c,d,e,f,g;
cout<<"四數: ";
cin>>a>>b>>c>>d;
e=a>b?a:b;
f=e>c?e:c;
g=f>d?f:d;
cout<<"四數中最大的數是: "<<g<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
黃宇綸
時間:
2017-11-22 17:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a,b,c,d,e,f,g;
cout<<"請輸入四個數: ";
cin>>a>>b>>c>>d;
e=a>b?a:b;
f=e>c?e:c;
g=f>d?f:d;
cout<<"四數中最大的數是: "<<g<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
黃宇瑄
時間:
2017-11-22 18:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a, b, c, d, e, f, g;
cout<<"請任意輸入四個數: ";
cin>>a>>b>>c>>d;
e=a>b?a:b;
f=e>c?e:c;
g=f>d?f:d;
cout<<"四數中最大的數是: "<<g<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
李沛昂
時間:
2017-11-22 18:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a,b,c,d,e,f,g;
cout<<"請任意輸入四個整數: ";
cin>>a>>b>>c>>d;
e=a>b?a:b;
f=c>d?c:d;
g=e>f?e:f;
cout<<"四數中最大的數是: "<<g<<endl<<endl;
goto re;
system ("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2