小女不胜感激~~~
#include <stdio.h>
#include <conio.h>
int main(void)
{
int a,b,c,d;
int temp,temp1;
clrscr();
scanf("%d %d %d %d",&a,&b,&c,&d);
if(a>b)
temp=b;
else
temp=a;
if(c>d)
temp1=d;
else
temp1=c;
if(temp<temp1)
printf("%d %d ",temp,temp1);
else
printf("%d %d ",temp1,temp);
if(a!=temp)
temp=a;
else
temp=b;
if(c!=temp1)
temp1=c;
else
temp1=d;
if(temp<temp1)
printf("%d %d ",temp,temp1);
else
printf("%d %d ",temp1,temp);
getch();
}