int a=0,b=0,c=0; if(++a>0||++b>0) ++c; 日期:2012-12-16 11:38:46 人气:1 int a=0,b=0,c=0; if(++a>0||++b>0) ++c; a=1,b=0 c=1 因为a先自加后1>0,所以不执行++b>0语句,所以b还是0