Answers for "multidimensional arrays java"

8

Multidimensional array in java

// two dimensional string array in java example
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();
      }
   }
}
Posted by: Guest on November-25-2020
4

Multidimensional array in java

// two dimensional array in java example program
public class SimpleTwodimensionalArray
{
   public static void main(String[] args) 
   {
      // declare and initialize two dimensional array
      int[][] arrnumbers = {{2, 4},{6, 8},{10, 12}};   
      System.out.println("Two dimensional array in java: ");    
      for(int a = 0; a < 3; a++) 
      {
         for(int b = 0; b < 2; b++) 
         {
            System.out.println(arrnumbers[a][b]);
         }
      }
   }
}
Posted by: Guest on November-25-2020
3

Multidimensional array in java

// how to fill a 2d array java
public class Fill2dArrayExample
{
   public static void main(String[] args) 
   {
      int[][] arrNumbers = new int[3][3];
      for(int a = 0; a < 3; a++)
      {
         for(int b = 0; b < 3; b++)
         {
            arrNumbers[a][b] = (int) (Math.random() * 6) ;
         }
      }
      for(int x = 0; x < 3; x++)
      {
         for(int y = 0; y < 3; y++)
         {
            System.out.print(arrNumbers[x][y] + " ");
         }
         System.out.println();
      }
   }
}
Posted by: Guest on November-25-2020
10

java two dimensional arrays

int[][] multiples = new int[4][2];     // 2D integer array with 4 rows 
                                          and 2 columns
String[][] cities = new String[3][3];  // 2D String array with 3 rows 
                                          and 3 columns
Posted by: Guest on October-01-2020
0

multidimensional arrays java

ships: [
		{ locations: [0, 0, 0], hits: ["", "", ""] },
		{ locations: [0, 0, 0], hits: ["", "", ""] },
		{ locations: [0, 0, 0], hits: ["", "", ""] }
	],
Posted by: Guest on March-05-2021
0

multidimensional arrays java

ships: [
		{ locations: [0, 0, 0], hits: ["", "", ""] },
		{ locations: [0, 0, 0], hits: ["", "", ""] },
		{ locations: [0, 0, 0], hits: ["", "", ""] }
	],
Posted by: Guest on March-05-2021

Code answers related to "multidimensional arrays java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language