분류 전체보기71 버블소팅 내림차순으로 정렬하실경우 예제의 IF문의 부등호방향만 바꿔주시면 됩니다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 # include # define MAX_SIZE 5 // 버블 정렬 void bubble_sort(int list[], int n) { int i, j, temp; for (int i = 0; i cs 출처 https://coding-factory.tistory.com/133 [C언어] 버블정렬 (배열에 있는 정수값 오름차순 정렬하기) 정렬(Sort)하는 방법을 포스팅합니다. 정렬하는 방법은 대표적으로 버블정렬,선택정렬,삽입정렬 이렇게 3가지가 있습니다. 차례대로 한.. 2019. 8. 21. 백준 2884 알람 시계 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 #include int main() { int h = 0; int m = 0; std::cin >> h >> m;; if (0 2019. 8. 20. 백준 2753 윤년 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 #include int main() { int a = 0; std::cin >> a; if (1 cs 2019. 8. 20. 백준 9498 시험성적 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 #include int main() { if (0 Colored by Color Scripter http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs 2019. 8. 20. 이전 1 ··· 10 11 12 13 14 15 16 ··· 18 다음