单项选择题
下面程序的输出结果是main()
{int x,y,z;
x=1;y=2;z=3
if(x>y)
if(x>z) printf("%d",x);
else printf("%d,y);
printf("%d",z);
}
A.
3
B.
13
C.
23
D.
无输出
点击查看答案
