下面几个逻辑运算式的结果为:
1. a=3,b=4 a<=b&&a!=5;
2. a=4,b=5 a==4||b!=5;
3. a=3,!(a<=5)
true true false
false true false
false true true
发表评论