[알고리즘3] 상하좌우 찾기 문제 풀기
뱁새유니버스
2차원 배열이 주어졌을 때 특정 행렬 값을 제시하면 상하좌우 값을 구하는 알고리즘을 만들었습니다. package algorithm; import java.util.Scanner; public class Main { static Scanner sc = new Scanner(System.in); public static void main(String[] args) { int arr[][] = { { 1, 2, 3, 4 }, { 5, 5, 7, 6 }, { 1, 2, 8, 9 } }; System.out.print("행 좌표를 입력하세요: "); int row = sc.nextInt(); System.out.print("열 좌표를 입력하세요: "); int col = sc.nextInt(); // 상하좌우 좌..