In C, you cannot write a condition like
if (-4 <= X <= 8) {
// ...
} else {
// ...
}
Instead, you will have to split this into two separate checks:
if (-4 <= X && X <= 8) {
// ...
} else {
// ...
}
This code is now totally fine - you can have whatever operands you'd like on either side of the <=
operator.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…