프로그래밍67 백준 10951 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 #include int main() { int a = -1; int b = -1; while (scanf("%d%d", &a, &b) !=EOF) { if (0 cs 8줄 EOF 파일의 끝(EOF) https://www.acmicpc.net/board/view/39199 글 읽기 - ★☆★☆★ [필독] A+B - 4 FAQ ★☆★☆★ 댓글을 작성하려면 로그인해야 합니다. www.acmicpc.net 2019. 8. 26. 별찍기 * ** *** **** ***** 1 2 3 4 5 6 7 8 9 10 11 12 13 14 int main() { int size = 0; scanf("%d", &size); for (int idx = 0; idx cs ***** **** *** ** * 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 #include int main() { int size = 0; scanf("%d", &size); for (int idx = 0; idx idx; jdx--) { printf("*"); } printf(" \n"); } } http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">.. 2019. 8. 22. 백준 10817 세수 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 # include void bubble_sort(int list[], int n) { int temp = 0; for (int i = 0; i cs 참고 자료- 버블소팅을 이용. 출처: https://ilove-ns-moka.tistory.com/26?category=701066 [오늘하루도 수고했다링] 버블소팅 내림차순으로 정렬하실경우 예제의 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 # inclu.. 2019. 8. 21. 버블소팅 내림차순으로 정렬하실경우 예제의 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. 이전 1 ··· 9 10 11 12 13 14 15 ··· 17 다음