pROBLEMAS AL COMPILAR
Publicado por Carlos Daniel (1 intervención) el 15/04/2017 19:38:09
Hola tengo problemas al ejecutar este archivo java desd eeclipse parece como que se cuelga el compilador y en la 3era lectura del scanner me empieza a leer enesimas veces sin que yo se lo establesca, si en la tercera linea de entrada le pongo 1, me deberia añadir otra linea mas , sin embargo me añade enesimas lineas de lectura o de entrada.
Pofavor alguien que lo ejecute y pueda comprobarlo porfavor que funcione bien
CASO DE PRUEBA
ENTRADA
10
21 3 2 8 9 12 18 1 32 50
3
0
1 5 5
0
SALIDA
27 22
EL PROGRAMA ES ESTE
Pofavor alguien que lo ejecute y pueda comprobarlo porfavor que funcione bien
CASO DE PRUEBA
ENTRADA
10
21 3 2 8 9 12 18 1 32 50
3
0
1 5 5
0
SALIDA
27 22
EL PROGRAMA ES ESTE
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;
import java.util.zip.Inflater;
class SelectivoFinal2016 {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner entrada=new Scanner(System.in);
Scanner entrada2=new Scanner(System.in);
Scanner entrada3=new Scanner(System.in);
int cantidad=entrada.nextInt();
ArrayList<Integer> listadenumeros=new ArrayList<Integer>();
String[] lista1=entrada2.nextLine().split(" ");
for(int i=0;i<lista1.length;i++){
listadenumeros.add(Integer.parseInt(lista1[i]));
}
int cantidadopera=entrada3.nextInt();
for(int i=0;i<cantidadopera;i++){
Scanner operacion=new Scanner(System.in);
String[] opera= operacion.nextLine().split(" ");
if (Integer.parseInt(opera[0])==0)System.out.println(cantidad(listadenumeros)+cantidad2(listadenumeros));
else listadenumeros.set(Integer.parseInt(opera[1])-1, Integer.parseInt(opera[2]));
operacion.close();
}
}
private static int cantidad(ArrayList<Integer> a){
cantidad=a.size();
for(int i =0;i<a.size()-1;i++){
int contador=i;
while(contador<a.size()-1){
if (a.get(contador)<a.get(contador+1)){
contador++;
cantidad++;
}
}
}
return cantidad;
}
private static int cantidad2(ArrayList<Integer> a){
cantidad2=0;
for(int i =0;i<a.size()-1;i++){
int contador=i;
while(contador<a.size()-1){
if (a.get(contador)>a.get(contador+1)){
contador++;
cantidad2++;
}
}
}
return cantidad2;
}
private static int cantidad;
private static int cantidad2;
}
Valora esta pregunta
0