填空题

下列程序的输出结果是______。
#include <stdio.h>
main ()
int x=3,y=2,z=1;
if (x<y)
if(y<0) z=0;
else z+=1;
printf("%d\n",z);

【参考答案】

A