Question: Rewrite the following if-else-if statement as a switch statement. if (selection == 'A') System.out.println(You selected A.); else if (selection == 'B') System.out.println(You selected B.); else

Rewrite the following if-else-if statement as a switch statement. 

if (selection == 'A')
 System.out.println("You selected A.");
else if (selection == 'B')
 System.out.println("You selected B.");
else if (selection == 'C')
 System.out.println("You selected C.");
else if (selection == 'D')
 System.out.println("You selected D.");
else
 System.out.println("Not good with letters, eh?");

Step by Step Solution

3.42 Rating (174 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

Solution switchselection case A SystemoutprintlnYo... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Starting Out With Java From Control Structures Questions!