반응형
링크
https://www.acmicpc.net/problem/11365
풀이
string을 받고 뒤집어 출력하면 됩니다.
algorithm 헤더에 있는 reverse() 함수를 사용해서 문제를 해결했습니다.
코드
//11365_!밀비 급일
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
string str;
int main() {
while (1) {
getline(cin, str);
if (str == "END") break;
reverse(str.begin(), str.end());
cout << str << endl;
}
return 0;
}
반응형
'PS > BOJ' 카테고리의 다른 글
[백준 BOJ] 1436 영화감독 숌 (0) | 2019.08.11 |
---|---|
[백준 BOJ] 1018 체스판 다시 칠하기 (0) | 2019.08.10 |
[백준 BOJ] 1476 날짜 계산 (0) | 2019.08.10 |
[백준 BOJ] 5532 방학 숙제 (0) | 2018.12.02 |
[백준 BOJ][세그먼트 트리] 2336 굉장한 학생 (0) | 2018.12.01 |