import java.util.Scanner; public class TwoArrays { public static int findSmallest(int[][] myArray) { int result = myArray[0][0]; for (int i = 0; i myArray[i][j]) { result = myArray[i][j]; } } } return result; } public static int findBiggest(int[][] myArray) { int result = myArray[0][0]; for (int i = 0; i < myArra..