public class Main {
public static void main(String[] args) {
int x = 5;
System.out.println(x > 3 && x < 10); // 输出 true,因为 5 大于 3 且 5 小于 10
}