forked from mohammedabdulbari/Java-SE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ArrayPractice.java
50 lines (37 loc) · 1.03 KB
/
ArrayPractice.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package arraypractice;
public class ArrayPractice
{
public static void main(String[] args)
{
//Creating Array of size 5X5
int A[][]=new int[5][5];
//Creating 2D array for size 5X5
int B[][];
B=new int[5][5];
int [][]C=new int[5][5];
int []D[]=new int[5][5];
//E is a 2D array and F is a 1D array
int[] E[],F;
E=new int[5][5];
F=new int[5];
//G H and I are 1D arrays
int[] G,H,I;
//Creating and initialising array of size 3X4
int M[][]={{1,2,3,4},{5,6,7,8},{9,10,11,12}};
//Jagged Array
int X[][];
X=new int[3][];
X[0]=new int[5];
X[1]=new int[3];
X[2]=new int[8];
//Displaying Array M
for(int x[]:M)
{
for(int y:x)
{
System.out.print(y+" ");
}
System.out.println("");
}
}
}