標題:
[作業] 五數中找出最大的數
[打印本頁]
作者:
tonyh
時間:
2013-11-23 17:41
標題:
[作業] 五數中找出最大的數
本帖最後由 tonyh 於 2013-11-23 17:43 編輯
介面如下
請依序輸入五個數: 4 5 6 7 3
五數中最大的數為: 7
作者:
周雍程
時間:
2013-11-23 17:46
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a, b, c, d, e, f, g, h, i;
cout<<"請依序輸入5個數:";
cin>>a>>b>>c>>d>>e;
f=(a>b)?a:b;
g=(c>d)?c:d;
h=(e>f)?e:f;
i=(g>h)?g:h;
cout<<"5數中較大的數為:"<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2013-11-23 17:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,d,e,f,g,h,i;
cout<<"請依序輸入五個數:";
cin>>a>>b>>c>>d>>e;
f=(a>b)?a:b;
g=(f>c)?f:c;
h=(g>d)?g:d;
i=(h>e)?h:e;
cout<<"五數中較大的數為"<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2013-11-23 17:49
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a, b, c, d, e, f, g, h, i;
cout << "請依序輸入五個數: ";
cin>>a>>b>>c>>d>>e;
f=(a>b)?a:b;
g=(f>c)?f:c;
h=(g>d)?g:d;
i=(h>e)?h:e;
cout<<"五數中最大的數為: "<<i<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
張郁偵
時間:
2013-11-23 17:49
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,d,e,f,g,h,i,j;
cout<<"請依序輸入五個數:";
cin>>a>>b>>c>>d>>e;
f=(a>b)?a:b;
g=(c>d)?c:d;
h=(e>f)?e:f;
i=(f>g)?f:g;
j=(g>h)?g:h;
cout<<"五數中較大的數為:"<<j<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
施伯叡
時間:
2013-11-23 17:49
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a,b,c,d,e,f,g,h,i,j;
cout<<"請依序輸入五個數:"<<endl;
cin>>a>>b>>c>>d>>e;
g=(a>b)?a:b;
h=(g>c)?g:c;
i=(h>d)?h:d;
j=(i>e)?i:e;
cout<<"五數中最大的數為:"<<j<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2013-11-23 17:50
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
int a,b,c,d,e,f,g,h,i;
cout<<"please enter five numbers:";
cin>>a>>b>>c>>d>>e;
f=(a>b)?a:b;
g=(c>d)?c:d;
h=(e>f)?e:f;
i=(g>h)?g:h;
cout<<"the biggest of five;"<<i<<endl;
system ("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2