[ C++ ] #2752 ( 세수정렬 ) // 세수정렬 #include using namespace std; int main() { ios::sync_with_stdio(0); cin.tie(nullptr); int a, b, c; cin >> a >> b >> c; if (a < b && a < c) { if (b < c) { cout BOJ/[ BOJ ] C++ 2022.01.10
[ C++ ] 10171 ( 고양이 ) #include using namespace std; int main() { ios::sync_with_stdio(0); cin.tie(nullptr); cout BOJ/[ BOJ ] C++ 2022.01.10
[ C++ ] #10871 (X보다 작은 수) #include using namespace std; int main() { ios::sync_with_stdio(0); cin.tie(nullptr); int N = 0; int X=0; cin >> N; cin >> X; for (int i = 0; i > A; if (A < X) { cout BOJ/[ BOJ ] C++ 2022.01.10