<코드>
#include <iostream>
#include<string>
#include<vector>
#include<algorithm>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
vector<string> box;
string input = "";
while (true) {
getline(cin, input); //한줄 통채로 입력받기
if (input == "END") {
break;
}
reverse(input.begin(), input.end()); //코드 뒤집기
box.push_back(input);
}
for (int i = 0; i < box.size(); i++) {
cout << box[i]<<"\n";
}
}
개인적으로 한줄입력받고 출력받아도 되는데
전부 입력받고 뒤집게 만들어서 조금 더 어렵게 푼거 같네용
'[백준] > C++' 카테고리의 다른 글
백준16396번 선 그리기 [C++] (0) | 2023.06.25 |
---|---|
백준 1316번 그룹 단어 체커 [C++] (0) | 2023.06.25 |
백준 5585번 거스름돈 [C++] (0) | 2023.06.25 |
백준 2865번 5와 6의 차이 [C++] (0) | 2023.06.25 |
백준 2667번 단지번호 붙이기 [C++] (0) | 2023.06.17 |