“Crie uma matriz vazia em Java” Respostas de código

Matriz vazia Java

//where n is the length you want the array to be
// for integer array
int[] intArray = new int[n];
// for String array
String[] strArray = new String[n];
Precious Puffin

Crie uma matriz vazia em Java

public static void main(String args[])
{
    int array[] = new int[4];
    int number = 5, i = 0,j = 0;
    while (i<4){
        array[i]=number;
        i=i+1;
    }
    while (j<4){
        System.out.println(array[j]);
        j++;
    }
}
Joyful Johnston

Matriz vazia Java


int[] notAnArray = null;

Defiant Dove

Respostas semelhantes a “Crie uma matriz vazia em Java”

Perguntas semelhantes a “Crie uma matriz vazia em Java”

Mais respostas relacionadas para “Crie uma matriz vazia em Java” em Java

Procure respostas de código populares por idioma

Procurar outros idiomas de código