西安交通大学 / 编译原理
正确率:100%
布尔表达式计算时可以采用某种优化措施,比如A and B用if-then-else可解释为()。
A.if A then true else B
B.if A then B else false
C.if A then false else true
D.if A then true else false
参考答案: