Syntax error on token "else", delete this token [closed]

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 made this command, but it does not work due to a syntax error, I'm solving it a while.

    
asked by anonymous 06.12.2018 / 02:23

1 answer

0

The error is in the first if ... It has a ; there that should not exist

    
06.12.2018 / 02:25