Ask your own question, for FREE!
Computer Science 8 Online
OpenStudy (anonymous):

Hi. In C/C++, can you do switch functions where each case relates to a range? As in, if i is between 10 and 20, do so and so.

OpenStudy (konradzuse):

From what I was reading up it looks like you can do case (0...9) thought it might be case(1,2,3,4,5....,9)

OpenStudy (anonymous):

From what I remember, you cannot use a switch statement like that. You can use if/else statements or you could write out each case without a break: case 10: case 11: case 12: ... case 20: do_something(); break; If you omit the break statement after a case, it will also execute the code of the next case (no matter the condition of the next case).

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!