注意:此页面搜索的是所有试题
执行下面程序的输出结果为( )。
#include<stdio.h>
void main() {
int x=5,y=8;
if(x>=y) printf("%d %d\n",x,y);
else printf("%d %d\n",y,x);
}

参考答案