문제 입력된 수 n 만큼 n행 n열의 형태로 연속으로 출력되는 숙자 사각형을 출력하자..! - 4 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 🥺 풀이 : 구구단이나, 별찍기 문제처럼 중첩 반복문을 사용하면된다. (for, while) public class 숫자사각형 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int sum =0; for(int i =0; i