Sum All element in the Array

PHOTO EMBED

Tue Jun 06 2023 22:15:58 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},
		};
		int total = 0;
		for(int row = 0; row < array.length; row ++) {
			for(int colomn =0; colomn< array[row].length; colomn ++) {
				total = total + array[row] [colomn];
			}
			System.out.println("total number in each line is = " + total);
		}
	}

//OutPut:
total number in each line is = 15
total number in each line is = 55
total number in each line is = 120
content_copyCOPY