please help me
I have exam tomorrow
Attachments:
Answers
Answered by
1
Answer:
switch(a)
{
case 0 : System.out.println("Zero");
break;
case 1 : System.out.println("One");
break;
case 2 : System.out.println("Two");
break;
case 3 : System.out.println("Three");
break;
default: System.out.println("Wrong Input");
break;
}
Similar questions