IT story/Algorism

배열5 모래시계 채우기

jason719 2016. 9. 4. 17:06

2016. 09. 04. Sun. 정보처리산업기사 실기 알고리즘



배열5 모래시계 채우기

1. 행은 1부터 5까지 증가

2. 열은 1행(1→5), 2행(2→4), 3행(3→3), 4행(2→4), 5행(1→5)

즉, 첫 행부터 가운데 행까지 열의 시작위치는 증가, 끝위치는 감소.

다음 행부터 끝 행까지 열의 시작위치는 감소, 끝위치는 증가.


예제

package example;


class Example{

int n = 5;

int row,col;

public void sandGlass(){

int array[][] = new int[n][n];

int num = 1;

int m = n/2;

System.out.println("\n 배열5 모래시계 채우기");

for(int row=0; row<n; row++){

if(row<=m){

for(int col=row; col<=(n-1)-row; col++){

array[row][col]=num++;

}

}else{

for(int col=(n-1)-row; col<=row; col++){

array[row][col]=num++;

}

}

}

for(int row=0; row<n; row++){

for(int col=0; col<n; col++){

System.out.printf("%3d",array[row][col]);

}

System.out.println();

}

}//sandGlass

}//class

public class Algorism {

public static void main(String[] args) {

Example e = new Example();

e.sandGlass();

}//main

}//class


'IT story > Algorism' 카테고리의 다른 글

배열7 이등변 삼각형 만들기  (0) 2016.09.04
배열6 오른쪽에 빈 삼각형 만들기  (0) 2016.09.04
배열4 다이아몬드 채우기  (0) 2016.09.04
배열3 'ㄹ'자 채우기  (0) 2016.09.04
배열2 직각 삼각형 만들기  (0) 2016.09.04