/*列出两个数。比较两个数的大小 */
#include<iostream>
#include<stdlib.h>
using namespace std;
int main()
{
int x,y;
cout<<"Enter x and y\n";
cin>>x>>y;
if(x!=y)
{
if(x>y)
{
cout<<"x>y"<<endl;
}
else
{
cout<<"x<y"<<endl;
}
}
else
{
cout<<"x=y"<<endl;
}
system("pause");
return 0;
}
</pre><pre code_snippet_id="366195" snippet_file_name="blog_20140527_3_72592" name="code" class="cpp">/*列出三个数,比较三个数的大小 方法一:*/
#include<iostream>
#include<stdlib.h>
using namespace std;
int main()
{
int x,y,z;
cin>>x>>y>>z;
int max=x;
if(max<y)
max=y;
if(max<z)
max=z;
cout<<"max的值为:"<<max<<endl;
system("pause");
return 0;
}
/*列出三个数,比较三个数的大小 方法二: */
#include<iostream>
#include<stdlib.h>
using namespace std;
int main()
{
int x,y,z;
cin>>x>>y>>z;
int max=x;
if(z>y)
{
if(z>x)
max=z;
}
else
{
if(x>y)
{
max=x;
}
}
cout<<"max的最大值为:"<<max<<endl;
system("pause");
return 0;
}