Eggs Sunny Side Up
본문 바로가기
Algorithm/Java Festival

[Java Festival] 2차원 배열을 왼쪽으로 90도 회전하여 출력

by guswn100059 2023. 3. 13.

public class P_23번 {

	public static void main(String[] args) {
		
		
		int[][] array = new int[5][5];
		
		int cnt = 1;
		
		for(int i = 0; i < array.length; i++) {
			for(int j = 0; j < array[i].length; j++) {
				array[i][j] = cnt++;
			}
		}
		
		for(int i = 0; i < array.length; i ++) {
			for(int j = 0; j < array[i].length; j++) {
				System.out.print(array[j][4-i]+" ");
			}
			System.out.println();
		}
		
		//0.0 0.1 0.2 0.3 0.4
		//4.0 3.0 2.0 1.0 0.0

	}

}

댓글