I need some help with doing a choice. Atm i have
choice =
switch (choice)
{
case 'A':
case 'a':
{
optel ();
break;
}
case 'B':
case 'b':
{
break;
}
case 'C':
case 'c':
{
break;
}
default:
{
System.out.println ("You did not choose any of the options");
break;
}
}
}
while (Character.toUpperCase (choice) != 'X')
;
System.out.println ("Bye-Bye");
But i dont know what to do after i just want to make a normal choice