標題:
[進階練習] 四數中找出最大的數
[打印本頁]
作者:
tonyh
時間:
2013-5-18 14:19
標題:
[進階練習] 四數中找出最大的數
a b c d
\/ \/ \/
e f g
\/ \/
h i
\/
j
作者:
黃柏維
時間:
2013-5-18 14:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,d,e,f,g;
cout<<"請依序輸入四個數字:"<<endl;
cin>>a>>b>>c>>d;
e=(a>b)?a:b;
f=(d>c)?d:c;
g=(e>f)?e:f;
cout<<"四數最大值為: "<<g<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張瀚仁
時間:
2013-5-18 14:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b, c, d, e, f ,g,h,i,j;
cout<<"請依序輸入4個數:"<<endl;
cin>>a>>b>>c>>d;
e=(a>b)?a:b;
f=(b>c)?b:c;
g=(c>d)?c:d;
h=(e>f)?e:f;
i=(f>g)?f:g;
j=(h>i)?h:i;
cout<<"4數中最大的數為:"<<j<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃崇維
時間:
2013-5-18 14:32
#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=(a>b)?a:b;
f=(b>c)?b:c;
g=(c>d)?c:d;
h=(e>f)?e:f;
i=(f>g)?f:g;
j=(h>i)?h:i;
cout<<"四數中最大的數為: "<<j<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鎧言
時間:
2013-5-18 14:32
#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=(a>b)?a:b;
f=(b>c)?b:c;
g=(c>d)?c:d;
h=(e>f)?e:f;
i=(f>g)?f:g;
cout<<"四數中最大的數為: "<<f<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林以諾
時間:
2013-5-18 14:33
#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=(a>b)?a:b;
f=(b>c)?b:c;
g=(c>d)?c:d;
h=(e>f)?e:f;
i=(f>g)?f:g;
j=(h>i)?h:i;
cout<<"四數最大為:"<<j<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蘇昱安
時間:
2013-5-18 14:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b, c, d, e, f,g,h,j;
cout<<"請依序輸入四個數: ";
cin>>a>>b>>c>>d;
d=(a>b)?a:b;
e=(b>c)?b:c;
f=(d>e)?d:e;
g=(h>j)?h:j;
cout<<"四數中最大的數為: "<<f<<endl;
system("pause");
return 0;
}
複製代碼
作者:
郭凡瑛
時間:
2013-5-18 14:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,d,e,f,g;
cout<<"請依序輸入4個數字:"<<endl;
cin>>a>>b>>c>>d;
e=(a>b)?a:b;
f=(d>c)?d:c;
g=(e>f)?e:f;
cout<<"4數最大值為: "<<g<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉泳鱔
時間:
2013-5-18 14:39
#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=(a>b)?a:b;
f=(b>c)?b:c;
g=(d>e)?d:e;
h=(e>f)?e:f;
i=(g>h)?g:h;
j=(h>i)?h:i;
cout<<"則四數中最大的是:" ;<<j<<endl;
system("pause");
return 0;
}
複製代碼
作者:
長逸
時間:
2013-5-18 14:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
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<<"4數中最大的數為:"<<g<<endl;
system("pause");
return 0;
}
複製代碼
作者:
長逸
時間:
2013-5-25 11:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b, c, d, e, f ,g,h,i,j;
cout<<"請依序輸入4個數:"<<endl;
cin>>a>>b>>c>>d;
e=(a>b)?a:b;
f=(b>c)?b:c;
g=(c>d)?c:d;
h=(e>f)?e:f;
i=(f>g)?f:g;
j=(h>i)?h:i;
cout<<"4數中最大的數為:"<<j<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許逸群
時間:
2013-6-10 20:03
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,d,e,f,g;
cout<<"請依序輸入四個數字:"<<endl;
cin>>a>>b>>c>>d;
e=(a>b)?a:b;
f=(d>c)?d:c;
g=(e>f)?e:f;
cout<<"四數最大值為: "<<g<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許逸群
時間:
2013-6-10 20:09
#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=(a>b)?a:b;
f=(b>c)?b:c;
g=(c>d)?c:d;
h=(e>f)?e:f;
i=(f>g)?f:g;
j=(h>i)?h:i;
cout<<"四數最大值為: "<<g<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2