C语言编写 三个数比大小 显示最大的数和最小的 简单的 我只是新手而已
#include<iostream.h>void main(){
int a,b,c,x,y;
cout<<"请输入三个整数:"<<endl;
cin>>a>>b>>c;
if (a>b) x=a;
else x=b;
if (x>c) y=x;
else y=c;
cout<<"最大的数为:"<<y<<endl;
if (a<b) x=a;
else x=b;
if (x<c) y=x;
else y=c;
cout<<"最小的数为:"<<y<<endl;
}