“tableau d'impression” Réponses codées

java comment imprimer un tableau

import java.util.Arrays;

class Scratch{
    public static void main(String[] args){
        int[] arr = new int[3];
        System.out.println( Arrays.toString( arr ));
      	//prints [0, 0, 0]
    }
}
Nitbit25

Comment imprimer le tableau

System.out.println(Arrays.toString(array));
Obedient Ocelot

java comment imprimer une chaîne []

String[] array = new String[] {"John", "Mary", "Bob"};
System.out.println(Arrays.toString(array)); // [John, Mary, Bob]
Pable Sorren

tableau d'impression

String[] array = new String[] {"John", "Mary", "Bob"};
System.out.println(Arrays.toString(array));
Outstanding Ocelot

comment imprimer un tableau js

var array = [1,2,3]

for(var i = 0; i < array.length ; i++){
    console.log(array[i])
}
Powerful Peccary

tableau d'impression

// Array of primitives:
int[] intArray = new int[] {1, 2, 3, 4, 5};
//output: [1, 2, 3, 4, 5]

// Array of object references:
String[] strArray = new String[] {"John", "Mary", "Bob"};
//output: [John, Mary, Bob]
Stupid Skimmer

Réponses similaires à “tableau d'impression”

Questions similaires à “tableau d'impression”

Plus de réponses similaires à “tableau d'impression” dans Java

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code