()
| 17 | } |
| 18 | } |
| 19 | public void display() { |
| 20 | // Displaying array |
| 21 | System.out.println("Displaying array: "); |
| 22 | for (i = 1; i <= 3; i++) { |
| 23 | for (j = 1; j <= 3; j++) { |
| 24 | System.out.println("2D Array: " + "["+i+"]" + "["+j+"] : " + arr[i][j]); |
| 25 | } |
| 26 | } |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | public class TwoDArrays { |