minstory
백준 10817번: 세 수 [C언어] 본문
#include <stdio.h>
int main(void)
{
int arr[3];
int temp=0;
for(int i=0;i<3;i++)
scanf("%d", &arr[i]);
for(int i=0;i<2;i++) //버블정렬
{
for(int j=0;j<2;j++)
{
if(arr[j]<arr[j+1])
{
temp=arr[j];
arr[j]=arr[j+1];
arr[j+1]=temp;
}
}
}
printf("%d", arr[1]);
return 0;
}
버블 정렬을 사용해서 배열의 요소들을 내림차순으로 정렬하고, arr[1]을 출력한다.
'백준 문제풀이 [C언어] > if문' 카테고리의 다른 글
백준 1110번: 더하기 사이클 [C언어] *백준 오답처리.. (0) | 2019.05.28 |
---|---|
백준 4344번: 평균은 넘겠지 [C언어] (0) | 2019.05.28 |
백준 1546번: 평균 [C언어] (0) | 2019.05.28 |
백준 10871번: X보다 작은 수 [C언어] (0) | 2019.05.27 |
백준 9498번: 시험 성적 [C언어] (0) | 2019.05.27 |
Comments