relationdemo.java~9~

来自「jbuilder2006一书的所有源代码」· JAVA~9~ 代码 · 共 17 行

JAVA~9~
17
字号
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 > c));    System.out.println("a >= b = " + (i >= j));    System.out.println("b < c = " + (j < c));    System.out.println("a <= b = " + (i <= j));    System.out.println("b == c = " + (j == c));    System.out.println("a != c = " + (i != c));  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?