IT story/Algorism

배열6 오른쪽에 빈 삼각형 만들기

jason719 2016. 9. 4. 17:16

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



배열6 오른쪽에 빈 삼각형 만들기

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

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

즉, 첫 행부터 가운데 행까지는 행 값은 반대로 감소

가운데 행부터 끝 행까지는 행 값과 동일하게 증가.


예제

package example;


class Example{

int n = 7;

int row,col;

public void emptyTriangle(){

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

int num = 1;

int m = n/2;

System.out.println("\n 배열6 오른쪽에 빈 삼각형 만들기");

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

if(row<=m){

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

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

}

}else{

for(int col=0; 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();

}

}//emptyTriangle

}//class

public class Algorism {

public static void main(String[] args) {

Example e = new Example();

e.emptyTriangle();

}//main

}//class



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

배열8 90도 회전하기  (0) 2016.09.04
배열7 이등변 삼각형 만들기  (0) 2016.09.04
배열5 모래시계 채우기  (0) 2016.09.04
배열4 다이아몬드 채우기  (0) 2016.09.04
배열3 'ㄹ'자 채우기  (0) 2016.09.04