독도갈매기의 개발 블로그
[알고리즘] 백준 X보다 작은 수 10871번 본문
#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번째 배열만 출력합니다.
'알고리즘' 카테고리의 다른 글
[알고리즘] 백준 최댓값 2562번 (0) | 2020.09.28 |
---|---|
[알고리즘] 백준 최소, 최대 10818번 (0) | 2020.09.27 |
[알고리즘] 백준 별 찍기 -2- 2439번 (0) | 2020.09.22 |
[알고리즘] 백준 별 찍기 -1- 2438번 (0) | 2020.09.21 |
[알고리즘] 백준 합 8393번 (0) | 2020.09.19 |
Comments