关系运算符: == != > < >= <=
关系运算符输出结果一定是 True或False
比如 System.out,println(5>3); //True
System.out.rpintln(10!=1)//True
System.out.println(5==1)//False