The idea of the game is to use a random from 1 to 100 and the user hits, when the user's number is higher, send a message warning the user, likewise if it is smaller and giving more chances for the user to hit.
The code itself is not compiling and I'm not finding the error
public static void main(String[] args) {
Random rand = new Random();
int numeroSorte = rand.nextInt(100) + 1;
System.out.println("Adivinhe o numero que estou pensando, ele esta entre 1 e 100");
boolean continuar = true;
Scanner scan = new Scanner(System.in);
while (continuar) {
System.out.print("digite um numero ");
int numeroUsuario = Integer.valueOf(scan.next());
if (numeroUsuario == numeroSorte) {
System.out.println("Parabens Voce acertou o numero ! ^^ ");
continuar = false;
} else if (numeroUsuario < numeroSorte) {
System.out.println("o numero " + numeroUsuario + "é menor que o meu numero");
} else {
System.out.println("o numero " + numeroUsuario + "é maior que o meu numero");
}
}
scan.close();
}
}