1for (int[] Array1 : Array) { //"Array" is the name of my array in this problem
2
3 for (int colu = 0; colu < Array.length; colu++) { //"Colu" is the variable
4 //so change it on your
5 //code.
6 sum = sum + Array1[colu];
7
8 }
9
10}