逻辑表达式的运算、简化办法
问题描述:
逻辑表达式的运算、简化办法
答
C表达式中的操作符按优先级顺序结合,本表达式中运算符的优先级顺序从高到低为:()、%、==、!=、&&、||.
所以表达式计算分解为:
temp1=year%4;
temp2=year%100;
temp3=year%400;
temp4=(temp1==0);
temp5=(temp2!=0);
temp6=(temp3==0);
temp7=(temp5&&temp6);
expr=(temp7||temp6);
所以操作符"!="的操作数为temp2和0,即(year%100)和0两个表达式;