ROT131 [BOJ]11655번: ROT13(c++) https://www.acmicpc.net/problem/11655 11655번: ROT13첫째 줄에 알파벳 대문자, 소문자, 공백, 숫자로만 이루어진 문자열 S가 주어진다. S의 길이는 100을 넘지 않는다.www.acmicpc.net 123456789101112131415161718192021222324252627282930313233#include iostream>#include string> using namespace std; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); // 입력 string input; getline(cin, input); // A/a ~ Z/z를 0 ~ 25.. 2020. 4. 25. 이전 1 다음