“Créez un tableau vide en Java” Réponses codées

Tableau vide 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

Créez un tableau vide en 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

Tableau vide java


int[] notAnArray = null;

Defiant Dove

Réponses similaires à “Créez un tableau vide en Java”

Questions similaires à “Créez un tableau vide en Java”

Plus de réponses similaires à “Créez un tableau vide en Java” dans Java

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code