📅  最后修改于: 2022-03-11 14:52:07.355000             🧑  作者: Mango
public class TestIfElse {
public static void main(String[] args) {
int a = 5, b = 6;
if (a > b) {
System.out.println("a is greater");
} else {
System.out.println("b is greater");
}
}
}