티스토리 뷰
728x90
문제 링크
https://www.acmicpc.net/problem/11365
문자열을 뒤집은 후 출력하자.
reverse 함수를 사용하면 편하다.
정답 코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
string s;
int main() {
while (getline(cin, s)) {
if (s == "END") break;
reverse(s.begin(), s.end());
cout << s << '\n';
}
}
|
cs |
728x90
'알고리즘 > 문제 풀이' 카테고리의 다른 글
[BOJ] 백준 2941 크로아티아 알파벳 (0) | 2019.05.18 |
---|---|
[BOJ] 백준 2902 KMP는 왜 KMP일까? (0) | 2019.05.18 |
[BOJ] 백준 15360 Rasvjeta (0) | 2019.05.13 |
[BOJ] 백준 15361 Izbori (0) | 2019.05.13 |
[BOJ] 백준 16211 백채원 (0) | 2019.05.13 |
댓글