[BOJ][11655] ROT13
Updated:
1. 문제 링크
https://www.acmicpc.net/problem/11655
2. 사용 알고리즘
구현
3. 풀이
-
아스키 코드 값을 이용하여 대문자 또는 소문자인지 확인
A : 65, B : 66, C : 67, ...
a : 97, b : 98, c : 99, ...
-
1에 해당하는 경우, 13을 더했을 때 범위 안에 들어오는지 확인
대문자 : 65 ~ 90 / 소문자 : 97 ~ 122
-
범위 안에 들어오는 경우 +13, 범위를 벗어나는 경우 -13 처리
4. 소스 코드
4-1. C++
https://github.com/dev-aiden/problem-solving/blob/main/boj/11655.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <iostream>
#include <string>
using namespace std;
int main(void) {
ios_base::sync_with_stdio(false);
string s; getline(cin, s);
int len = s.length();
for (int i = 0; i < len; ++i) {
if (s[i] >= 65 && s[i] <= 90) {
if(s[i] + 13 <= 90) s[i] += 13;
else s[i] -= 13;
} else if (s[i] >= 97 && s[i] <= 122) {
if(s[i] + 13 <= 122) s[i] += 13;
else s[i] -= 13;
}
}
cout << s << "\n";
return 0;
}
4-2. JAVA
https://github.com/dev-aiden/problem-solving/blob/main/boj/11655.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
String s = br.readLine();
int len = s.length();
for(int i = 0; i < len; ++i) {
char ch = s.charAt(i);
if (ch >= 65 && ch <= 90) {
if(ch + 13 <= 90) ch += 13;
else ch -= 13;
} else if (ch >= 97 && ch <= 122) {
if(ch + 13 <= 122) ch += 13;
else ch -= 13;
}
sb.append(ch);
}
System.out.println(sb);
}
}
Leave a comment