백준 알고리즘(C/C++) - 10871번 X보다 작은 수
- 알고리즘
- 2021. 5. 31.
#include <stdio.h>
int main(void) {
int count, a, i, x;
scanf("%d %d", &count, &a);
for (i = 0; i < count; i++) {
scanf("%d", &x);
if (a > x)
printf("%d ", x);
}
return 0;
}
#include <iostream>
int main() {
int count, a, i, x;
std::cin >> count >> a;
for (i = 0; i < count; i++) {
std::cin >> x;
if (a > x)
std::cout << x << " ";
}
return 0;
}
x보다 작은 수 출력이니
나는 값을 입력 받으면서 x보다 작은 수를 출력 할 것이다.
먼저 값을 입력받고 그 다음 x보다 작은 수 인지를 비교해보는 방식으로 작성하였다.