[백준] #10871 X보다 작은 수

kkily·2021년 6월 25일
0

[알고리즘]

목록 보기
22/102

문제링크

#include <iostream>

using namespace std;

int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int n, x;
    cin >> n >> x;
    int a[n];

    for (int i = 0; i < n; i++)
    {
        cin >> a[i];
        if (a[i] < x)
        {
            cout << a[i] << " ";
        }
    }
}
profile
낄리의 개발 블로그╰(*°▽°*)╯

0개의 댓글

관련 채용 정보