문제

1   2   3   4   5
5   1   2   3   4
4   5   1   2   3
3   4   5   1   2
2   3   4   5   1

 

2차원 배열을 이용해서 이렇게 출력하기

코드를 좀 더 깔끔하게 적었으면 좋았을텐데 라는 생각이 든다.나중에 수정해서 한번 더 올려야겠다

 

 

깃허브

https://github.com/kindacool/etc/blob/main/PrintSquare2.java

 

GitHub - kindacool/etc

Contribute to kindacool/etc development by creating an account on GitHub.

github.com

 

 

코드

package p2022_07_13;

public class PrintSquare2 {

	public static void main(String[] args) {

//		   1  2  3  4  5
//		   5  1  2  3  4
//		   4  5  1  2  3
//		   3  4  5  1  2
//		   2  3  4  5  1

		final int len = 5;
		int[][] num = new int[5][5];

		for (int i = 0; i < len; i++) {

			for (int j = 0; j < len; j++) {

				if (j + 1 - i <= 0) {
					num[i][j] = (j + 1) - i + 5;
				} else {
					num[i][j] = (j + 1) - i;
				}

			}

		}

		// 출력
		for (int i = 0; i < 5; i++) {

			for (int j = 0; j < 5; j++) {
				System.out.print(num[i][j] + " ");
			}
			System.out.println();
		}
	}
}

 

 

출력

+ Recent posts