15969 : 행복

풀이

돌려돌려~ 돌림판~

코드

#include <cstdio>
int n, x, mn = 1e9, mx = -1e9;
int main() {
    scanf("%d", &n);
    while (n--) {
        scanf("%d", &x);
        if (mn > x) mn = x;
        if (mx < x) mx = x;
    }
    printf("%d", mx - mn);
    return 0;
}

아무말

백준, 백준 온라인 저지, BOJ, Baekjoon Online Judge, C, C++, 씨, 씨쁠쁠, JAVA, algorithm, 자바, 알고리즘, 자료구조, 문제, 문제 풀이, 풀이

wookje.kwon's profile image

wookje.kwon

2018-09-06 17:42

Read more posts by this author