If-Statement checking vor a value between two others
- by iFloh
Is there a kind of "between" check I can use in an if-statement that verifies whether a given float value is between two others?
Can I write something like
if (floatConstA <= checkFloatValue < foatConstB) {
or must I do this using AND/OR constructs?