Doubt about Index of a vector
hi people have a doubt how make the attributes the index of a vector ex 0 v[0] or 1 v[1]. this My code: public static void main(String[] args) { Scanner teclado = new Scanner(System.in); System.out.println("Atribuidor de vector com seu proprio Indice "); System.out.println("Introduza o tamanho do Vector: "); int n = teclado.nextInt(); int dim[] = new int[n]; System.out.println("Listagem de numeros no Vetor"); for (int i = 0; i < dim.length; i++) { System.out.printf("numero: %d \n %d v[%d] ",n, i, i); int v = teclado.nextInt(); dim[i] = v; } } }