how to declare multidimensinaol array in java code example
Example 1: Multidimensional array in java
public class TwoDimensionalStringArray
{
public static void main(String[] args)
{
String[][] animals = {
{ "Lion", "Tiger", "Cheetah" },
{ "Deer", "Jackal", "Bear" },
{ "Hyena", "Fox", "Elephant" } };
for(int a = 0; a < animals.length; a++)
{
System.out.print(animals[a][0] + " ");
for(int b = 1; b < animals[a].length; b++)
{
System.out.print(animals[a][b] + " ");
}
System.out.println();
}
}
}
Example 2: multidimensional arrays java
ships: [
{ locations: [0, 0, 0], hits: ["", "", ""] },
{ locations: [0, 0, 0], hits: ["", "", ""] },
{ locations: [0, 0, 0], hits: ["", "", ""] }
],