SyntaxFix
Write A Post
Hire A Developer
Questions
Simple utility method:
public static boolean isBetween(int value, int min, int max) { return((value > min) && (value < max)); }