import java.util.Random;
import java.util.Scanner;
public class DesafioJuegoAdivinacion {
public static void main(String[] args) {
/*crear un juego que simule las adivinanzas
tiene que crear un numero ramdom entre el 1 al 100
solo debe de tener 5 intentos
*/
Scanner teclado= new Scanner(System.in);
int turnos=0;//variable que va a almacenar los turnos
int numeroJugador=0;
int ramdom= new Random().nextInt(100);
System.out.println("ramdom = " + ramdom);
for (int i = 0; i <5 ; i++) {
System.out.println("digite un numero");
numeroJugador= teclado.nextInt();
turnos+=1;
if (numeroJugador==ramdom){
System.out.println("felicidades ganaste");
break;//si mi numero es hacertado se para el programa
} else if (turnos==5) {
System.out.println("lo siento pero ya no tienes mas intentos");
} else{
System.out.println("vuelve a intentarlo");
}
//turnos+=1;
}
}
}