Syntax error on token "Else", delete this token

Asked

Viewed 480 times

0

if(comando == "w"); {
    System.out.println("Você foi para o norte.");
    System.out.println("Um inimigo surgiu!!! Oque deseja fazer? (a = atacar e f = fugir)");
    comando = in.nextLine();
    if(comando == "a"); {
        if(rand.nextInt(100) < 75) {
            System.out.println("Você acertou o inimigo, você venceu!");             
            } else {                    
            System.out.println("Você errou o inimigo, você perdeu !");                                                              
         } 
       } else {
            System.out.println("Você correu o jogo acabou!"

I did this command, but it does not work due to a syntax error, I’m a while away.

  • 1

    That semicolon after the if was meant to be?

1 answer

0


The mistake is in the first if... Has a ; there that should not exist

Browser other questions tagged

You are not signed in. Login or sign up in order to post.