xt3-9-2.cpp
上传用户:liubin
上传日期:2022-06-13
资源大小:85k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. using namespace std;
  3. int main ( )
  4.   {int a,b,c,temp,max ;
  5.    cout<<"please enter three integer numbers:";
  6.    cin>>a>>b>>c;
  7.    temp=(a>b)?a:b;                 /*  将a和b中的大者存入temp中 */
  8.    max=(temp>c)?temp:c;            /*  将a和b中的大者与c比较,最大者存入max */
  9.    cout<<"max="<<max<<endl;
  10.    return 0;
  11.   }