📄 relationdemo.java~15~
字号:
package operationsymbol;public class RelationDemo { public static void main(String[] args) { int i = 1; int j = 2; System.out.println("i = " + i); System.out.println("j = " + j); System.out.println("i > j = " + (i > j)); System.out.println("i >= j = " + (i >= j)); System.out.println("i < j = " + (i < j)); System.out.println("i <= j = " + (i <= j)); System.out.println("i == j = " + (i == j)); System.out.println("i != j = " + (i != j)); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -