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

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. using namespace std;
  3. int main ( )
  4.   {int a,b,c;
  5.    cout<<"please enter three integer numbers:";
  6.    cin>>a>>b>>c;
  7.    if(a<b)
  8.      if(b<c)
  9.        cout<<"max="<<c;
  10.      else
  11.        cout<<"max="<<b;
  12.     else if (a<c)
  13.         cout<<"max="<<c;
  14.     else
  15.         cout<<"max="<<a;
  16.     cout<<endl;
  17. return 0;
  18.   }