Advertisements
Advertisements
Question
Convert the following if else if construct into switch case
if (var= = 1)
System.out .println(“good”);
else if(var= =2)
System.out.prindn(“better”);
else if(var= =3)
System.out.prindn( “best”);
else
System.out.prindn(“invalid”);
One Line Answer
Solution
switch ( ) {
case 1:
System.out .println( “good”);
break; .
case 2:
System.out .println( “better”);
break;
case 3:
System.out.println( “invalid”);
break;
}
shaalaa.com
Conditional Constructs in Java
Is there an error in this question or solution?