关于C++,从键盘输入3个整数,输出其中最大数
关于C++,从键盘输入3个整数,输出其中最大数
日期:2009-11-16 18:16:03 人气:1
#include
using namespace std;
void main()
{
int a,b,c,max;
cout<<"please input the three num:";
cin>>a>>b>>c;
max=(a>b)?a:b;
max=(max>c)?max:c;
cout<<"max is :"<<m