c bubblesort1 [자바] bubblesort 버블정렬을 실행하는 프로그램을 작성하시오 공부하시는대에 도움이 됐으면 좋겠습니다. 답안코드 확인해주세요! 더보기 public class Main { public static void main(String[] args) { int[] b = {7, 5, 11, 2, 16, 4, 18, 14, 12, 30}; System.out.println("bubble sort 진행하기 전"); int i; for (i = 0; i < b.length; i++) System.out.print(b[i] + " "); System.out.println(); Main.sort(b); System.out.println("bubble sort 진행 후"); for (i = 0; i < b.length; i++) System.out.print(b[i] + " "); Sy.. 2022. 12. 31. 이전 1 다음