Press 2 to contact customer support
You are creating an automated phone system for bank clients. Number selections should activate the actions noted below as follows: 1 => Language selection 2 => Customer support 3 => Check account balance 4 => Check loan balance 0 => Exit You can use the first 4 commands in a random sequence without interrupting the phone call - only the number 0 does. Write a program that will continuously take a number as input and output the corresponding message, until the client enters 0. Sample Input 1 4 3 0 Sample Output Language selection Check loan balance Check the balance Exit Here is my code: https://code.sololearn.com/cPdw0xPz5I3p/?ref=app Can you please tell me what's wrong in this code. I tried with this code. But still the compiler is showing exception errors!