逻辑与运算符 && int i; i=exp1&&exp2; 如果exp1和exp2都为非0值,那么i值为1,否则,i值为0。 逻辑或运算符 || int i; i=exp1||exp2; 如果exp1和exp2中至少一个为非0值,那么i值为1,否则,i则为0