Write a switch statement that tests the value of the char variable response and performs the following actions: if response is y, the message Your request is being processed is printed if response is n, the message Thank you anyway for your consideration is printed if response is h, the message Sorry, no help is currently available is printed for any other value of response, the message Invalid entry; please try again is printed

LANGUAGE: JAVA

CHALLENGE:

Write a switch statement that tests the value of the char variable response and performs the following actions: if response is y, the message Your request is being processed is printed if response is n, the message Thank you anyway for your consideration is printed if response is h, the message Sorry, no help is currently available is printed for any other value of response, the message Invalid entry; please try again is printed

SOLUTION:


switch ( response ){
   case 'y':
      System.out.println( "Your request is being processed");
      break;
   case 'n':
      System.out.println( "Thank you anyway for your consideration");
      break;
   case 'h':
      System.out.println( "Sorry, no help is currently available");
      break;
   default:
      System.out.println( "Invalid entry; please try again");
}