The third row

Report a typo

You need to implement printTheThirdRow method. It should print the third row of the twoDimArray. The elements should be separated by space.

It is guaranteed that twoDimArray has at least 3 rows.

Write a program in Java 17
class ArrayOperations {
public static void printTheThirdRow(int[][] twoDimArray) {
// write your code here

}
}
___

Create a free account to access the full topic