java - switch statement with range of int
I want to use a switch statement to check a range of numbers I have found a few places saying something like case 1...5 or case (score >= 120) && (score <=125) would work but I just somehow keep on getting errors. What I want is if the number is between 1600-1699 then do something. I can do if statements but figured it's time to start using switch if possible. On the JVM level switch statement is fundamentally different from if statements. Switch is about compile time constants that have to be all specified at compile time, so that javac compiler produces efficient bytecode. In Java switch