본문 바로가기

Algorithm

C++(씨쁠쁠)(cplusplus)-백준(baekjoon)(BaekJoon)코딩 5598번:카이사르 암호 답

반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <iostream>
#include <string>
using namespace std;
int main() {
    string w;
    cin >> w;
    for (int i = 0; i < w.size(); i++)
    {
        if (w[i] > 67)
        {
            printf("%c", w[i] - 3);
        }
        else
        {
            printf("%c", w[i] + 23);
        }
    }
    
}
cs