Switch case statements are an alternate method for long if statements that compare a variable to several 'integral' values. The value of the variable given into switch is compared to the value following each of the cases, and when one value matches the value of the variable, the computer continues executing the program at that point.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | switch (n) { case this-value: // code to be executed if n is equal to this-value break; case this-value2: // code to be executed if n is equal to this-value2 break; . . . default: // code to be executed if n doesn't match any of the cases } |
12 July 2019 3087 Written By: Rohit
© 2020 Tech Study. All rights reserved | Developed by Tech Study| Privacy Policy | Sitemap