Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

afficher matrice java

int[][] matrice =
{
   { 0, 1, 4, 3 } , // tableau [0] de int	(1)
   { 5, 7, 9, 11, 13, 15, 17 } // tableau [1] de int	(2)
};

System.out.println(Arrays.toString(matrice[0])); // Affiche (1)
System.out.println(Arrays.toString(matrice[1])); // Affiche (2)
Source by fr.acervolima.com #
 
PREVIOUS NEXT
Tagged: #afficher #matrice #java
ADD COMMENT
Topic
Name
5+5 =