목록선택정렬 (1)
특별한딸기이야기
자바 코드(병합 프로그램_선택 정렬 추가)
package com.tistory.special0strawberry; public class Run { // 메인 함수 public static void main(String[] args) { IntArray a, b, c; Sort s = new Sort(); Add add = new Add(); a = new IntArray(); b = new IntArray(); System.out.print("첫번째 "); a.UserInput(); s.BubbleSort(a); System.out.print("\n첫번째 "); a.PrintArray(); System.out.print("\n두번째 "); b.UserInput(); s.SelectSort(b); System.out.print("\n두번째 ");..
딸기 공부방/JAVA
2008. 5. 24. 01:00