返回列表 發帖

三數中找出最大的數

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

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int a,b,c,d,e,f;
  7.    cout<<"請輸三個數:";
  8.    cin>>a>>b>>c;
  9.    d=(a>b)?a:b;
  10.    e=(b>c)?b:c;
  11.    f=(d>e)?d:e;   
  12.    cout<<f<<"最大"<<endl;
  13.    system("pause");
  14.    return 0;
  15. }
複製代碼
http://fs-old.mis.kuas.edu.tw/~s1102137106/music/

TOP

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

TOP

返回列表