For switch statements, is it possible to change the value of the switch inside the switch statement so that it can jump around to different cases? Ex:
int w
If we do not give break after each case then Java will start executing the statement from matching case and keep on executing statements for following cases as well, until either a break statement is found or switch statements end is encountered.