Sigo con problemas con java
Publicado por cesar (11 intervenciones) el 30/07/2017 00:50:28
Buenas Amigos no me reconoce esta opcion System in
link de video https://youtu.be/TMIoxn4nMtA?list=PLU8oAlHdN5BktAXdEVCLUYzvDyqRQJ2lk
errores son Description Resource Path Location Type
Resource leak: ‘entrada’ is never closed bucles2adivine.java /PRIMEROS PASOS/src line 19 Java Problem
ESpero su ayuda CESAR SALUDOS
link de video https://youtu.be/TMIoxn4nMtA?list=PLU8oAlHdN5BktAXdEVCLUYzvDyqRQJ2lk
errores son Description Resource Path Location Type
Resource leak: ‘entrada’ is never closed bucles2adivine.java /PRIMEROS PASOS/src line 19 Java Problem
ESpero su ayuda CESAR SALUDOS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import java.util. *;
import javax.swing.JOptionPane;
public class bucles2adivine {
private Object system;
public bucles2adivine() {
// TODO Auto-generated constructor stub
}
public static void main(String[] args) {
// TODO Auto-generated method stub
int aleatorio=(int)(Math.random()*100);
Scanner entrada= new Scanner(System.in);
int numero = 0;
int intentos = 0;
{
while(numero!=aleatorio){
}
intentos ++;
System.out.println(“introduce un numero” );
numero = entrada.nextInt();
if(numero<aleatorio){
System.out.println(“Mas Bajo” );
}
else if (numero>aleatorio){
System.out.println(“Mas Alto” );
}
System.out.println(“correcto” );
}
System.out.println(“correcto. Lo has conseguido en ” +intentos+”intentos”);
}
Valora esta pregunta
0