-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10222.cpp
80 lines (80 loc) · 1.35 KB
/
10222.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include<stdio.h>
#include<string.h>
#include <ctype.h>
int main()
{
int i,l,j;
char a[10000];
while(gets(a))
{
l=strlen(a);
for(j=0;j<l;j++)
{
if(isupper(a[j]))
{
a[j]=a[j]+32;
}
}
for(i=0;i<l;i++)
{
if(a[i]=='e')
a[i]='q';
else if(a[i]==' ')
a[i]=' ';
else if(a[i]=='r')
a[i]='w';
else if(a[i]=='t')
a[i]='e';
else if(a[i]=='y')
a[i]='r';
else if(a[i]=='u')
a[i]='t';
else if(a[i]=='i')
a[i]='y';
else if(a[i]=='o')
a[i]='u';
else if(a[i]=='p')
a[i]='i';
else if(a[i]=='[')
a[i]='o';
else if(a[i]==']')
a[i]='p';
else if(a[i]=='d')
a[i]='a';
else if(a[i]=='f')
a[i]='s';
else if(a[i]=='g')
a[i]='d';
else if(a[i]=='h')
a[i]='f';
else if(a[i]=='j')
a[i]='g';
else if(a[i]=='k')
a[i]='h';
else if(a[i]=='l')
a[i]='j';
else if(a[i]==';')
a[i]='k';
else if(a[i]==39)
a[i]='l';
else if(a[i]=='c')
a[i]='z';
else if(a[i]=='v')
a[i]='x';
else if(a[i]=='b')
a[i]='c';
else if(a[i]=='n')
a[i]='v';
else if(a[i]=='m')
a[i]='b';
else if(a[i]==',')
a[i]='n';
else if(a[i]=='.')
a[i]='m';
else if(a[i]=='/')
a[i]=',';
}
printf("%s\n",a);
}
return 0;
}