LO QUE NO DEBO OLVIDAR DE LOS VECTORES
* Inicializacion
* Ingresar Datos
* Mostrar Datos
* Otros Algoritmos
--> ORDENACION
--> BUSQYEDA
1) INICIALIZACION.-
int v[] = new int[n];
Object O[] = new Object[n];
int v1[] = {2, 9, 7, 8};
Vector v2 = new Vector(5);
//Para utilizar la clase Vector debemos hacer un import
//import java.Util.Vector;
int v3; // Solo es una referencia
2) INGRESAR DATOS.-
v[0] = 25;
v2.add(300);
v2.add(200);
v2.add(10, 4);
2.1) INGRESAR DATOS POR TECLADO.-
BufferedReader val = (new val BufferedReader(new InputStreamReader(System.in)));
int num = Integer.ParseInt(val.ReadLine());
for(i = 0 ; i < num.length ; i++){
v[i] = Integer.ParseInt(val.ReadLine());
}
3) MOSTRAR DATOS.-
public Static void Mostrar(int x[]){
for(i = 0 ; i < x.length ; i++){
System.Out.Println("["+ i + "]" + x[i]);
}
}
//invocacion al metodo main()
public static void main(String[] args) {
Mostrar(v);
}
* Inicializacion
* Ingresar Datos
* Mostrar Datos
* Otros Algoritmos
--> ORDENACION
--> BUSQYEDA
1) INICIALIZACION.-
int v[] = new int[n];
Object O[] = new Object[n];
int v1[] = {2, 9, 7, 8};
Vector v2 = new Vector(5);
//Para utilizar la clase Vector debemos hacer un import
//import java.Util.Vector;
int v3; // Solo es una referencia
2) INGRESAR DATOS.-
v[0] = 25;
v2.add(300);
v2.add(200);
v2.add(10, 4);
2.1) INGRESAR DATOS POR TECLADO.-
BufferedReader val = (new val BufferedReader(new InputStreamReader(System.in)));
int num = Integer.ParseInt(val.ReadLine());
for(i = 0 ; i < num.length ; i++){
v[i] = Integer.ParseInt(val.ReadLine());
}
3) MOSTRAR DATOS.-
public Static void Mostrar(int x[]){
for(i = 0 ; i < x.length ; i++){
System.Out.Println("["+ i + "]" + x[i]);
}
}
//invocacion al metodo main()
public static void main(String[] args) {
Mostrar(v);
}
Comentarios
Publicar un comentario
Deja tu Comentario.