English

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 - Computer Applications

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?
2017-2018 (March) Set 1
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×