C - MISTAKE 1 关系运算符的优先级相同 1 2 3 4 5 6 7 8 9 int a; scanf("%d", &a); if (3<a<10){ printf("T"); }else{ // 这段代码永远不会走到这一步,比如输入 a=-2, 3