Answer to Question #184581 in Java | JSP | JSF for Kim

Question #184581

Correct the following code so that prints the correct message


if (score>=60)

System.out.println("You Pass.");

else;

System.out.println("You Fail.");


1
Expert's answer
2021-04-23T02:11:12-0400
if (score>=60){
    System.out.println("You Pass.");
}else{
    System.out.println("You Fail.");            
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog