关于#int#的问题,如何解决?

1.设int a=1,int b=2, int c=3;求表达式a<b!=c的值?

结果为1
a<b 即 1<2 结果为true ,1;
1 != c 即 1 != 3 结果为true,1;