class Main { public static void main(String[] args) { int a = 10; int b = 20; int c = 30; //如果a小于或者b大于c,执行分支1 //反正a小于b和b大于c这两个有一个为true,就执行分支1。 if (a < b || b > c){ System.out.println("Hello"); }else { System.out.println("yes"); } } }