public class Main {
public static void main(String[] args) {
int x = 5;
System.out.println(!(x > 3 && x < 10)); // 返回 false,因为 !(非运算符)用于反转结果
}