int[][] array = new int[5][5];
// 2차원 배열에 숫자를 넣는 2중 for문
for (int i = 0; i < 5; i++) {
for (int j = 0; j < 5; j++) {
// 패턴을 판별하는 if문 : (i + j)%2 == 0 인 경우
if ((i+j)%2 == 0 && (Math.abs(i-2) + Math.abs(j-2)) != 4) {
array[i][j] = currentNumber;
currentNumber += 2;
} // if문
} // inner for
} //outer for
0 0 2 0 0
0 4 0 6 0
8 0 10 0 12
0 14 0 16 0
0 0 18 0 0
package array;
public interface MakerPen {
// 검정 마커펜을 추상화하시오.
public static final String blackMaker = "#000000";
public static final String redkMaker = "#FF0000";
public static final String greenkMaker = "#00FF00";
public static final String blueMaker = "#0000FF";
}