Row and Colomn

PHOTO EMBED

Tue Jun 06 2023 21:37:00 GMT+0000 (Coordinated Universal Time)

Saved by @Mohamedshariif #java

public static void main(String[] args) {
		
		int [][] array = {
				{1,2,3,4,5},
				{6,7,8,9,10},
				{11,12,13,14,15},
		};
		for(int row = 0; row < array.length; row ++) {
			for(int colomn =0; colomn< array[row].length; colomn ++) {
				System.out.print(array[row] [colomn] + " ");
			}
			System.out.println();
		}
	}

//OutPut:
1 2 3 4 5 
6 7 8 9 10 
11 12 13 14 15 
content_copyCOPY

java