Introduction :- Today we shall , see another topic about the conditional statements which is the switch case. So in the post there will be the a sample program and the same sample program's download link is provided . Feel free to have changes in the code and if you wish to share the modified code , share it in the comment section . What is the switch case basically ? Switch case is similar to the if-else only the change is that it will change according to the condition in the switch block there will be multiple case which are will evaluate according to the switch condition. What is the syntax of the switch case ? Syntax :- switch(expression) { // case statements // values must be of same type of expression case value1 : // Statements break; // break is optional case value2 : ...