-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1024.cpp
62 lines (54 loc) · 1.23 KB
/
1024.cpp
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
53
54
55
56
57
58
59
60
61
62
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
/*
1 - Somente caracteres que sejam letras minúsculas
e maiúsculas devem ser deslocadas 3 posições para a direita, segundo a
tabela ASCII: letra 'a' deve virar letra 'd', letra 'y' deve virar
caractere '|' e assim sucessivamente.
2 - A linha deverá ser invertida.
3 - Todo e qualquer caractere a partir da metade em diante (truncada)
devem ser deslocados uma posição para a esquerda na tabela ASCII.
Neste caso, 'b' vira 'a' e 'a' vira '`'.
*/
void change1(string &str, int &len)
{
len = str.length();
for (int i = 0; i < len; i++)
{
if ((str[i] >= 65 && str[i] <= 90) || (str[i] >= 97 && str[i] <= 122))
{
str[i] += 3;
}
}
}
void change2(string &str)
{
reverse(str.begin(), str.end());
}
void change3(string &str, int len)
{
int center = len / 2;
for (int i = center; i < len; i++)
{
str[i]--;
}
}
int main()
{
int n, len;
string m;
cin >> n;
while (n--)
{
while (getline(cin, m))
if (m != "")
break;
change1(m, len);
change2(m);
change3(m, len);
cout << m << endl;
}
return 0;
}