返回列表 發帖

[進階練習] 四數中找出最大的數

a  b  c  d
\/  \/ \/
e   f  g
  \/  \/
  h   i
    \/
    j

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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.     }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

返回列表