독도갈매기의 개발 블로그

[알고리즘] 백준 X보다 작은 수 10871번 본문

알고리즘

[알고리즘] 백준 X보다 작은 수 10871번

독도갈매기 2020. 9. 24. 21:26

underX

#include <bits/stdc++.h>
using namespace std;

int main()
{
    int tmp, first, second;
    cin >> tmp;
    cin >> first;
    int* result = new int[tmp];

    for (int i = 0; i < tmp; i++) {
        cin >> second;
        result[i] = second;
    }
    for (int i = 0; i < tmp; i++) {
        if (result[i] < first) {
            cout << result[i] << " ";
        }
    }
}

tmp에 반복할 수를 입력받습니다.
first에서 비교할 수를 입력받습니다.
result배열을 만들어 값들을 받아 15번째 for문 조건문에 충족한 i번째 배열만 출력합니다.

Comments