본문 바로가기
개인공부

달팽이 별찍기 문제

by 리승우 2022. 8. 13.
class snail {
    public static void main(String[] args) {
        int[][] snail = new int[5][5];
        
        int print = 5;
        int k = 1;
        int right = -1;
        int bottom = 0;
        int top = 1;
        
        for(int i=5; i>0; i--) {
            
            for(int j=0; j<print; j++) {
                right += top;
                snail[bottom][right] = k;
                k++;
            }
            
            print--;
            
            for(int j=0; j<print; j++) {
                bottom += top;
                snail[bottom][right] = k;
                k++;
            }
            
            top = top * (-1);
        }
        
        // 출력
        for(int i=0; i<snail.length; i++) {
            for(int j=0; j<snail[i].length; j++) {
        	    System.out.printf("%2d ", snail[i][j]);
            }
            System.out.println();
        }
    }
}

 

'개인공부' 카테고리의 다른 글

익명클래스  (0) 2022.08.15
내부클래스  (0) 2022.08.15
1차원 배열문제  (0) 2022.08.09
2차원 배열  (0) 2022.08.08
인터페이스 / 지역변수 / 인스턴스변수(전역변수,필드,멤버)  (0) 2022.08.06

댓글