Correct the following code so that prints the correct message
if (score>=60)
System.out.println("You Pass.");
else;
System.out.println("You Fail.");
if (score>=60){
System.out.println("You Pass.");
}else{
System.out.println("You Fail.");
}
Comments
Leave a comment