单选题 以下程序运行结果是______。
#include<stdio.h>
int main()
{
int x=2, y=3, z;
z=x>y?--x:--y;
printf("%d, %d, %d/n", x, y, z);
return 0;
}
【正确答案】 C
【答案解析】