Board logo

標題: [進階練習] 四數中找出最大的數 [打印本頁]

作者: tonyh    時間: 2013-5-18 14:19     標題: [進階練習] 四數中找出最大的數

a  b  c  d
\/  \/ \/
e   f  g
  \/  \/
  h   i
    \/
    j
作者: 黃柏維    時間: 2013-5-18 14:26

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int a,b,c,d,e,f,g;
  7. cout<<"請依序輸入四個數字:"<<endl;
  8. cin>>a>>b>>c>>d;
  9. e=(a>b)?a:b;
  10. f=(d>c)?d:c;
  11. g=(e>f)?e:f;
  12. cout<<"四數最大值為: "<<g<<endl;
  13. system("pause");   
  14. return 0;   
  15. }
複製代碼

作者: 張瀚仁    時間: 2013-5-18 14:29

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a, b, c, d, e, f ,g,h,i,j;
  7.     cout<<"請依序輸入4個數:"<<endl;
  8.     cin>>a>>b>>c>>d;
  9.     e=(a>b)?a:b;
  10.     f=(b>c)?b:c;
  11.     g=(c>d)?c:d;
  12.     h=(e>f)?e:f;
  13.     i=(f>g)?f:g;
  14.     j=(h>i)?h:i;
  15.     cout<<"4數中最大的數為:"<<j<<endl;     
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

作者: 黃崇維    時間: 2013-5-18 14:32

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a, b, c, d, e, f, g, h, i, j;
  7.     cout<<"請依序輸入四個數: ";
  8.     cin>>a>>b>>c>>d;
  9.     e=(a>b)?a:b;
  10.     f=(b>c)?b:c;
  11.     g=(c>d)?c:d;
  12.     h=(e>f)?e:f;
  13.     i=(f>g)?f:g;
  14.     j=(h>i)?h:i;
  15.     cout<<"四數中最大的數為: "<<j<<endl;
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

作者: 鎧言    時間: 2013-5-18 14:32

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a, b, c, d, e, f, g, h, i,j;
  7.     cout<<"請依序輸入四個數: ";
  8.     cin>>a>>b>>c>>d;
  9.     e=(a>b)?a:b;
  10.     f=(b>c)?b:c;
  11.     g=(c>d)?c:d;
  12.     h=(e>f)?e:f;
  13.     i=(f>g)?f:g;
  14.     cout<<"四數中最大的數為: "<<f<<endl;
  15.     system("pause");
  16.     return 0;   
  17. }
複製代碼

作者: 林以諾    時間: 2013-5-18 14:33

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a, b, c, d, e, f, g, h, i, j;
  7.     cout<<"請輸入不同的四數:";
  8.     cin>>a>>b>>c>>d;
  9.     e=(a>b)?a:b;
  10.     f=(b>c)?b:c;
  11.     g=(c>d)?c:d;
  12.     h=(e>f)?e:f;
  13.     i=(f>g)?f:g;
  14.     j=(h>i)?h:i;
  15.     cout<<"四數最大為:"<<j<<endl;
  16. system("pause");
  17. return 0;   
  18.     }
複製代碼

作者: 蘇昱安    時間: 2013-5-18 14:37

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a, b, c, d, e, f,g,h,j;
  7.     cout<<"請依序輸入四個數: ";
  8.     cin>>a>>b>>c>>d;
  9.     d=(a>b)?a:b;
  10.     e=(b>c)?b:c;
  11.     f=(d>e)?d:e;
  12.     g=(h>j)?h:j;
  13.     cout<<"四數中最大的數為: "<<f<<endl;
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

作者: 郭凡瑛    時間: 2013-5-18 14:37

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int a,b,c,d,e,f,g;
  7. cout<<"請依序輸入4個數字:"<<endl;
  8. cin>>a>>b>>c>>d;
  9. e=(a>b)?a:b;
  10. f=(d>c)?d:c;
  11. g=(e>f)?e:f;
  12. cout<<"4數最大值為: "<<g<<endl;
  13. system("pause");   
  14. return 0;   
  15. }
複製代碼

作者: 劉泳鱔    時間: 2013-5-18 14:39

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a, b, c, d, e, f, g, h, i, j;
  7.     cout<<"請依序輸入四數: ";
  8.     cin>>a>>b>>c>>d;
  9.     e=(a>b)?a:b;
  10.     f=(b>c)?b:c;
  11.     g=(d>e)?d:e;
  12.     h=(e>f)?e:f;
  13.     i=(g>h)?g:h;
  14.     j=(h>i)?h:i;
  15.     cout<<"則四數中最大的是:" ;<<j<<endl;
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

作者: 長逸    時間: 2013-5-18 14:44

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a, b, c, d, e, f, g;
  7.     cout<<"請依序輸入四個數:";
  8.     cin>>a>>b>>c>>d;
  9.     e=(a>b)?a:b;
  10.     f=(c>d)?c:d;
  11.     g=(e>f)?e:f;
  12.     cout<<"4數中最大的數為:"<<g<<endl;
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 長逸    時間: 2013-5-25 11:31

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a, b, c, d, e, f ,g,h,i,j;
  7.     cout<<"請依序輸入4個數:"<<endl;
  8.     cin>>a>>b>>c>>d;
  9.     e=(a>b)?a:b;
  10.     f=(b>c)?b:c;
  11.     g=(c>d)?c:d;
  12.     h=(e>f)?e:f;
  13.     i=(f>g)?f:g;
  14.     j=(h>i)?h:i;
  15.     cout<<"4數中最大的數為:"<<j<<endl;     
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

作者: 許逸群    時間: 2013-6-10 20:03

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int a,b,c,d,e,f,g;
  7. cout<<"請依序輸入四個數字:"<<endl;
  8. cin>>a>>b>>c>>d;
  9. e=(a>b)?a:b;
  10. f=(d>c)?d:c;
  11. g=(e>f)?e:f;
  12. cout<<"四數最大值為: "<<g<<endl;
  13. system("pause");   
  14. return 0;   
  15. }
複製代碼

作者: 許逸群    時間: 2013-6-10 20:09

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int a,b,c,d,e,f,g,h,i,j;
  7. cout<<"請依序輸入四個數字:"<<endl;
  8. cin>>a>>b>>c>>d;
  9.     e=(a>b)?a:b;
  10.     f=(b>c)?b:c;
  11.     g=(c>d)?c:d;
  12.     h=(e>f)?e:f;
  13.     i=(f>g)?f:g;
  14.     j=(h>i)?h:i;
  15. cout<<"四數最大值為: "<<g<<endl;
  16. system("pause");   
  17. return 0;   
  18. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2