比较大小
#include <stdio.h>#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
//从大到小输出
int main(int argc, char *argv[]) {
int a,b,c,e,f;
c=a>b;
e=a*c+b*(1-c);
f=b*c+a*(1-c);
scanf("%d %d",&a,&b);
printf("%d %d",e,f);
return 0;
}为什么输出不是按照从大到小的顺序