0
How to call different methods in switch case
4 Respuestas
+ 1
switch(var){
case 0:
callFirstMethod();
break;
case 1:
callSecondMethod();
break;
...
}
0
I want to call different methods in main method using switch case
0
That's what I've done.
Share your code here if you want it to be more precise :)
0
I have to create calculator using this