[정보처리기사 실기]_2020년_프로그래밍
[1회] 12. #includevoid main() { int i, j; int temp; int a[5] = { 75, 95, 85, 100, 50 }; for (i = 0; i a[j + 1]) { temp = a[j]; a[j] = a[j + 1]; a[j + 1] = temp; } } } for (i = 0; i 1) int i, j; int temp; : 정수형 변수 i, j, temp 선언. 2) int a[5] = { 75, 95, 85, 100, 50 }; : 길이가 5인 정수형 배열 선언하면서 초기화. 3) for문 ① i = 0 일 때 j = 0 일 때 if (a[0] > a[1]) = if (75 > 95)는 거짓이므로 if문 아..