0
Print whole array of multidimensional array
2D array: myArray[255] [4] System.out.println(myArray[5][2]); No problem so far. But now I want to print the whole array nr. 5. I tried: System.out.println(myArray[5]); which doesn't work.
3 Respuestas
+ 5
Something like this?
https://code.sololearn.com/cOm9jhyS4jN4/?ref=app
+ 4
Or this way?
https://code.sololearn.com/c237F179RrrM/?ref=app
+ 2
Perfect. Thank you!