C/백준

10871번

vss121 2021. 11. 7. 00:16

5 3

1 2 3 4 5

바로 쳐야 결과가 나온다

 

#include<stdio.h>
int main() {
    int n, x,a;
    scanf("%d %d", &n, &x);
    for (int i = 1; i <= n; i++)
    {
        scanf("%d", &a);
        if (a < x)
            printf("%d ", a);
    }
}

'C > 백준' 카테고리의 다른 글

1110번  (0) 2021.11.07
#10951  (0) 2021.11.07
[C언어] 백준 2577번 - 숫자의 개수  (0) 2021.10.20
[C언어] 백준 9498번 시험성적  (0) 2021.07.20
[C언어] 백준 2588번 곱셈  (0) 2021.07.13