ex19) java_oop
class StringCompare { static String array1[] = { "IMF", "제주도", "자바도사", "한글나라", "Computer", "모카", "JAVA", "인터넷탐색", "초롱초롱", "come", "바람", "스크립터", "군고구마", "도서", "their","contry" } ; public static void main(String args[]) { System.out.println("======= 정렬전 데이터 =========="); for(int k = 0; k < array1.length; k++) System.out.print(array1[k] + " "); System.out.println(); System.out.println("======= 정렬후 ..
2012. 2. 23.