숫자 사각형

Rudy·2023년 5월 24일
0

public class Main {
    public static void main(String[] args) {
        //문제
        //입력된 수(N) 만큼 N행 N열의 형태로 연속으로 출력되는 숫자 사각형을 출력하시오
        int n = 5;

        
        int str = 1;
        for (int i = 0; i < n ; i++){
            for (int j = 0; j < n ;j++){
                System.out.printf("%4d",str);
            }
            System.out.println();
        }
    }
}
profile
주니어 개발자

0개의 댓글