设变量x和y均已正确定义并赋值,以下语句在编译时将产生错误信息的是:( )。
Aif(x++);
Bif(x>y&&y!=0);
Cif(x>0) x--
else y++;
Dif(y<0) {;}
else x++;
c 错误 x-- 之后少了分号