问题详情
设变量 x 和 y 均已正确定义并赋值,以下 if 语句中,在编译时将产生错误信息的是
A)if(x++);
B)if(x>y&&y!=0);
C)if(x>y) x--
else y++;
D)if(y<0) {;}
else x++;