[BOJ / C++] 5598 카이사르 암호

Seulguo·2022년 7월 12일
0

Algorithm

목록 보기
40/185
post-thumbnail

🐣 문제

링크 : https://www.acmicpc.net/problem/5598


🐥 코드

#include <iostream>
#include <string> 
#include <vector>
using namespace std;


int main(){	
  string s; 
  cin >> s;

  for(char c : s){
    if(c == 'A' || c == 'B' || c == 'C'){
      c = int(c) + 23;
    }
    else c = int(c) - 3;
    cout << c;
  }
  
  return 0;
}

0개의 댓글