-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHJ21.cpp
49 lines (47 loc) · 893 Bytes
/
HJ21.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
#include<iostream>
#include<string>
#include<sstream>
#include<unordered_map>
using namespace std;
unordered_map<char,int> map{
{'a',2},
{'b',2},
{'c',2},
{'d',3},
{'e',3},
{'f',3},
{'g',4},
{'h',4},
{'i',4},
{'j',5},
{'k',5},
{'l',5},
{'m',6},
{'n',6},
{'o',6},
{'p',7},
{'q',7},
{'r',7},
{'s',7},
{'t',8},
{'u',8},
{'v',8},
{'w',9},
{'x',9},
{'y',9},
{'z',9}
};
int main(){
string input;
while(cin>>input){
stringstream trainer;
for(auto i=input.begin();i!=input.end();i++){
if(isdigit(*i) || ispunct(*i)) {cout<<*i;continue;}
if(islower(*i)){cout<<map[*i];continue;}
if(isupper(*i)){
if(*i!='Z') {cout<<char(tolower(*i)+1);continue;}
else {cout<<'a';continue;}
}
}
}
}