下列程序的功能是将从键盘输入的一对整数由小到大排序输出,当输入的一对整数相等时结束循环。程序中的空白处(横线上方)应该填入()。
#include
main( )
{
int a,b,temp;
scanf(“%d%d”,&a,&b);
while( ){
if(a>b){
temp=a;
a=b;
b=temp;
}
printf(“%d,%d\n”,a,b);
scanf(“%d%d”,&a,&b);
}
}