728x90
https://www.acmicpc.net/problem/5598
#include <iostream>
#include <string>
using namespace std;
int main() {
string s;
cin >> s;
for (int i = 0; i < s.size(); i++) {
if (s[i] >= 'D') cout << (char)(s[i] - 3);
else cout << (char)(s[i] + 23);
}
return 0;
}
728x90
'알고리즘 문제' 카테고리의 다른 글
[백준] 15657번 N과 M (8) (0) | 2020.02.29 |
---|---|
[백준] 1934번 최소공배수 (0) | 2020.02.29 |
[백준] 2609번 최대공약수와 최소공배수 (0) | 2020.02.29 |
[백준] 11048번 이동하기 (0) | 2020.02.29 |
[백준] 9506번 약수들의 합 (0) | 2020.02.28 |