初学c++。。简单程序给看下。。
#include"iostream"void main()
{
int a ,b;
int max;
cout<<"请输入一个数a:";
cin>>a;
cout<<"请在输入一个数b:";
cin>>b;
if(a>b)
cout<<"两个数中的最大数为a:"<<a<<endl;
else
{
if(a==b)
cout<<"两个数相等"<<endl;
else
cout<<"两个数中的最大数为b:"<<b<<endl;
}
}
在vc++6.0里编译出错了。。。什么问题