problem with if and Else

Asked

Viewed 31 times

-4

i was in the middle of a java class and my eclipse ide just doesn’t recognize any, IF I’ve been trying for a long time to solve someone help me


code:

package projeto_leitura;

import java.util.Random;
import java.util.Scanner;

public class Main {
    
    public static void main(String[] args) {
        
        Scanner in = new Scanner(System.in); 
        String nome;
        Random rand = new Random();
        System.out.println("seja bem-vindo ao jogo! digite seu nome:");
        nome = in.nextLine();
        System.out.println("seja muito bem vindo "+nome);
        System.out.println("voce deseja avançar para qual lado? w, a, s, d");
        String ff = in.nextLine();
        if(ff == "w") {
            System.out.println("você esta indo para frente");
            System.out.println("um inimigo apareceu o que fazer? w= atacar c=correr");
            ff = in.nextLine();
            if(ff == "w") {
                if(rand.nextInt(100) < 75) {
                    System.out.println("voce ganhou phorra");
                    
                }else {
                    System.out.println("você perdeu o jogo...");
                }
                
            }else {
                System.out.println("você correu o jogo acabou!");
            }
            }
            
        }
        
                
        
        

                                    
        
        

    

        }

1 answer

-1

Maybe using . equals() works.

if(ff.equals("w")) {
        System.out.println("você esta indo para frente");
        System.out.println("um inimigo apareceu o que fazer? w= atacar c=correr");
        ff = in.nextLine();....
  • krl mano helped too much thank you!

Browser other questions tagged

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