Hey! Pretty fresh with java so bear with me; Im trying to find a way to sum up each row in a 2d array and to show the highest sum of a row in an output and which row the highest value is in. Any ideas on where to look/hints? Thanks in advance!
You need to create two loops. In the nested loop you'll calculate sum. As result you'll get one 1d array with sums. Then you need to find max value in this array.