JAVA 달팽이 썸네일형 리스트형 [자바/JAVA] 자바 골뱅이, 역골뱅이 만들기. 자바 골뱅이, 역골뱅이 만들기. 1. 골뱅이 & 역골뱅이 import java.io.*;class At{ public static void main(String[] args) throws IOException{ BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); System.out.print("숫자입력 : "); int num = Integer.parseInt(in.readLine()); At_1 a1 = new At_1(num); //골뱅이 At_2 a2 = new At_2(num); //역골뱅이 } } class At_1{ At_1(int num){ int at[][] = new int[num][num]; int coun.. 더보기 이전 1 다음