Skip to content

Commit

Permalink
BOJ-EX: 5/18/2024, 2:59:38 AM
Browse files Browse the repository at this point in the history
  • Loading branch information
fkdl0048 committed May 17, 2024
1 parent e0d1f7c commit d10dbf6
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 0 deletions.
40 changes: 40 additions & 0 deletions 11655번: ROT13/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# 11655번: ROT13 - <img src="https://static.solved.ac/tier_small/5.svg" style="height:20px" /> Bronze I

<!-- performance -->

<!-- 문제 제출 후 깃허브에 푸시를 했을 때 제출한 코드의 성능이 입력될 공간입니다.-->

<!-- end -->

## 문제

[문제 링크](https://boj.kr/11655)


<p>ROT13은 카이사르 암호의 일종으로 영어 알파벳을 13글자씩 밀어서 만든다.</p>

<p>예를 들어, "Baekjoon Online Judge"를 ROT13으로 암호화하면 "Onrxwbba Bayvar Whqtr"가 된다. ROT13으로 암호화한 내용을 원래 내용으로 바꾸려면 암호화한 문자열을 다시 ROT13하면 된다. 앞에서 암호화한 문자열 "Onrxwbba Bayvar Whqtr"에 다시 ROT13을 적용하면 "Baekjoon Online Judge"가 된다.</p>

<p>ROT13은 알파벳 대문자와 소문자에만 적용할 수 있다. 알파벳이 아닌 글자는 원래 글자 그대로 남아 있어야 한다. 예를 들어, "One is 1"을 ROT13으로 암호화하면 "Bar vf 1"이 된다.</p>

<p>문자열이 주어졌을 때, "ROT13"으로 암호화한 다음 출력하는 프로그램을 작성하시오.</p>



## 입력


<p>첫째&nbsp;줄에 알파벳 대문자, 소문자, 공백, 숫자로만 이루어진 문자열 S가 주어진다. S의 길이는 100을 넘지 않는다.</p>



## 출력


<p>첫째 줄에 S를 ROT13으로 암호화한 내용을 출력한다.</p>



## 소스코드

[소스코드 보기](ROT13.cpp)
32 changes: 32 additions & 0 deletions 11655번: ROT13/ROT13.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/* ************************************************************************** */
/* */
/* ::: ::: ::: */
/* Problem Number: 11655 :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: fkdl4878 <boj.kr/u/fkdl4878> +#+ +#+ +#+ */
/* +#+ +#+ +#+ */
/* https://boj.kr/11655 #+# #+# #+# */
/* Solved: 2024/05/18 02:37:46 by fkdl4878 ### ### ##.kr */
/* */
/* ************************************************************************** */

#include <bits/stdc++.h>
using namespace std;

int main(){
string s;
getline(cin, s);

for (int i = 0; i < s.length(); i++)
{
if (isalpha(s[i]))
{
if (islower(s[i]))
s[i] = (s[i] - 'a' + 13) % 26 + 'a';
else
s[i] = (s[i] - 'A' + 13) % 26 + 'A';
}
}

cout << s << endl;
}
Binary file added 11655번: ROT13/ROT13.exe
Binary file not shown.

0 comments on commit d10dbf6

Please sign in to comment.