Switch range | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 1

Switch range

Can we include ranges in switch cases ? If yes what is the syntax ?

28th Nov 2020, 6:10 PM
Aritra Banerjee
Aritra Banerjee - avatar
2 Respostas
+ 5
It's not standard C++, but some compilers allow it as an extension. The syntax is case lower ... upper: where "lower" and "upper" are both included in the range. Keep in mind this is not standard, so if portability is a factor, you should probably not include it in your code.
28th Nov 2020, 6:45 PM
Shadow
Shadow - avatar
+ 4
It does work here in the SoloLearn playground, FYI. Here's an example. https://www.google.com/amp/s/www.geeksforgeeks.org/using-range-switch-case-cc/amp/ https://code.sololearn.com/cIQm1QkSgElw/?ref=app For more portability you can take advantage of the switch case fallthrough and list multiple cases consecutively without using a break statement for those ranges. Although this can become cumbersome if you have a large range.
28th Nov 2020, 7:04 PM
ChaoticDawg
ChaoticDawg - avatar