public class Main {
public static void main(String[] args) {
int x = 5;
System.out.println(x > 3 || x < 4); // 输出 true,因为其中一个条件为真(5 大于 3,但 5 不小于 4)
}