a=b=c=0; x=35if(a) x--; else if(b); // 因为 a 等于 0,所以执行 else , b也 等于 0,什么也不做。if (c) x=3; else x=4; //因为 c 等于 0,所以执行 else 得 x=4;所以 结果: a=b=c=0; x=4;