Multidimensional Arrays | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
0

Multidimensional Arrays

are these nested arrays? can anyone explain how they can be accessed? thanks in advance.

15th Oct 2016, 12:16 PM
Prakash Umapathy
Prakash Umapathy - avatar
1 Antwort
+ 1
String[][] users = {{"Bob", "23", "EN"},{"Mary,", "21", "FR"}}; : {{Array0},{Array1}} : System.out.print(users[0][1]); OUT : 23
15th Oct 2016, 5:37 PM
Wanderlei Borges
Wanderlei Borges - avatar