A. 程序无误,能正常通过编译 B. #include 有误,需改为#include "stdio.h" C. int x,y,z;有误,需改为int x; y;z; D. x=y=z=1;有误,需改为x=1; y=1;z=1;