I have to implement the following in a switch statement:
switch
switch(num) { case 4: // some code ; break; case 3: // some code ; brea
You could do something like this at the end of your switch statement:
default: if(num < 0) { ... // Code } break;