-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1249.cpp
More file actions
52 lines (43 loc) · 1.05 KB
/
Copy path1249.cpp
File metadata and controls
52 lines (43 loc) · 1.05 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include <bits/stdc++.h>
using namespace std;
int UPPERCASE_BEGIN = 65;
int UPPERCASE_END = 90;
int LOWERCASE_BEGIN = 97;
int LOWERCASE_END = 122;
void crypt(string line)
{
int actual_char;
string crypted;
char node;
for(int i = 0; i < line.length(); i++)
{
actual_char = line.at(i);
if (actual_char >= UPPERCASE_BEGIN && actual_char <= UPPERCASE_END) {
if (actual_char + 13 > UPPERCASE_END) {
actual_char = UPPERCASE_BEGIN + (12 - (UPPERCASE_END - actual_char));
} else {
actual_char += 13;
}
} else if (actual_char >= LOWERCASE_BEGIN && actual_char <= LOWERCASE_END) {
if (actual_char + 13 > LOWERCASE_END) {
actual_char = LOWERCASE_BEGIN + (12 - (LOWERCASE_END - actual_char)) ;
} else {
actual_char += 13;
}
} else {
actual_char = actual_char;
}
node = actual_char;
crypted.push_back(node);
}
cout << crypted << endl;
}
int main()
{
ios_base::sync_with_stdio(false);
string line;
while (std::getline(std::cin, line))
{
crypt(line);
}
}