728x90
반응형
시저 암호는 유명한데 교양 보안 관련 수업에서도 나왔었다.
재밌는 암호화 방법인 것 같다.
#include <string>
#include <vector>
#include <iostream>
using namespace std;
string solution(string s, int n) {
string answer = "";
for (int i = 0; i < s.size(); i++)
{
if (s[i] == ' ')
{
answer.push_back(s[i]);
}
else
{
for (int u = 0; u < n; u++)
{
if (s[i] == 'z')
{
s[i] = 'a';
continue;
}
else if (s[i] == 'Z')
{
s[i] = 'A';
continue;
}
else
{
s[i] += 1;
continue;
}
}
answer.push_back(s[i]);
}
}
cout << answer << endl;
return answer;
}
728x90
반응형
'코딩 테스트 > 프로그래머스' 카테고리의 다른 글
[Level 1, C++] 체육복 (0) | 2022.07.04 |
---|---|
[Level 1, C++] 최대공약수와 최소공배수 (0) | 2022.07.04 |
[Level 1, C++] 자연수 뒤집어 배열로 만들기 (0) | 2022.07.04 |
[Level 1, C++] x만큼 간격이 있는 n개의 숫자 (0) | 2022.07.04 |
[Level 1, C++] 핸드폰 번호 가리기 (0) | 2022.07.04 |