Loading...
「ツール」は右上に移動しました。
利用したサーバー: natural-voltaic-titanium
5いいね 128回再生

Arrays II What is Multi Dimensional Arrays with Example II Core Java

In this session you will learn what is multi dimensional array with examples

Please check below session for Introduction to Arrays and Single dimensional Array with example

*************************************************
Example program for Multi-dimensional Array
*************************************************
package ArraysDemo;

public class array_multi_dimensional
{
public static void main(String args[])
{

int[][] numbers = { {2,7,9},

{3,6,1}
};

for(int i=0;iLT2;i++)
{

for(int j=0;jLT3;j++)
{
System.out.println("Value : " + numbers[i][j]);
System.out.println("This is testyyyyyyyyyy");
}

}


}
}

コメント