https://www.acmicpc.net/problem/11655
ROT 13의 규칙은 소문자든 대문자든 알파벳이 오른쪽으로 13칸 이동한 알파벳을 출력하면 된다.
13칸을 이동할 때, a ~ z를 넘어가는 범위가 존재한다면, 다시 a부터 시작할 수 있도록 약간의 모듈러 연산을 추가해서 다른 문자의 아스키코드로 넘어가지 않도록 이를 방지한다.
#include <iostream>
#include <string>
#include <cstring>
using namespace std;
string str;
int pos;
int main()
{
getline(cin, str);
for (int i = 0; i < str.size(); i++)
{
if (isalpha(str[i]))
{
if (isupper(str[i]))
{
pos = ((str[i] - 'A') + 13) % 26;
str[i] = pos + 'A';
}
else
{
pos = ((str[i] - 'a') + 13) % 26;
str[i] = pos + 'a';
}
}
}
cout << str << '\n';
return 0;
}
'Algorithm' 카테고리의 다른 글
[백준 9375] 패션왕 신해빈 (0) | 2024.08.16 |
---|---|
[백준 9996] 한국이 그리울 땐 서버에 접속하지 (0) | 2024.08.16 |
[백준 11051] 이항 계수 2 (0) | 2022.01.11 |
[백준 1654] 랜선 자르기 (0) | 2021.12.23 |
[백준 2231] 분해합 (0) | 2021.12.22 |