<?php //为什么y是2??++y不是先加吗? int x = 2, y = 2,z=0,a; a = ++x || ++y && z++; printf("%d,%d,%d\n",x,y,z); ?>
答案来自:
wap.baidu.com