Skip to content

Latest commit

 

History

History
executable file
·
14 lines (12 loc) · 205 Bytes

File metadata and controls

executable file
·
14 lines (12 loc) · 205 Bytes

条件语句

int a = 100;
int b = 200;

if (a > b) {
  System.out.println("a 大于 b");
} else if (a < b) {
  System.out.println("a 小于 b");
} else {
  System.out.println("a 等于 b");
}