Switch statements

So, I have a program that needs to evaluate a number and then print a statement based on what category it is in. Sounds simple right? Well, I'm trying to figure out if I can use switch statements to check if the number is greater than or equal to 50 etc.. and then print a statement. Is this possible? Or will I have to use a bunch of if statements?

Thanks!
You can't use switch statements to check for a range (at least not easily). Just use if statements, you can do it far more easily with them.
Ok thank you. Its just a pain to have to use a billion if statements:P
Topic archived. No new replies allowed.