Advertisement
noshin98

uva 10222

Jul 5th, 2016
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.66 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<string.h>
  3. int main()
  4. {
  5.     char a[10005];
  6.     int i,l;
  7.     while(gets(a))
  8.     {
  9.         l=strlen(a);
  10.         for(i=0;i<l;i++)
  11.         {
  12.             if(a[i]==']')
  13.                 a[i]='p';
  14.             else if(a[i]=='[')
  15.                 a[i]='o';
  16.             else if(a[i]=='p' || a[i]=='P')
  17.                 a[i]='i';
  18.             else if(a[i]=='o' || a[i]=='O')
  19.                 a[i]='u';
  20.             else if(a[i]=='i' || a[i]=='I')
  21.                 a[i]='y';
  22.             else if(a[i]=='u' || a[i]=='U')
  23.                 a[i]='t';
  24.             else if(a[i]=='y' || a[i]=='Y')
  25.                 a[i]='r';
  26.             else if(a[i]=='t' || a[i]=='T')
  27.                 a[i]='e';
  28.             else if(a[i]=='r' || a[i]=='R')
  29.                 a[i]='w';
  30.             else if(a[i]=='e' || a[i]=='E')
  31.                 a[i]='q';
  32.  
  33.             else if(a[i]=='\'')
  34.                 a[i]='l';
  35.             else if(a[i]==';')
  36.                 a[i]='k';
  37.             else if(a[i]=='l' || a[i]=='L')
  38.                 a[i]='j';
  39.             else if(a[i]=='k' || a[i]=='K')
  40.                 a[i]='h';
  41.             else if(a[i]=='j' || a[i]=='J')
  42.                 a[i]='g';
  43.             else if(a[i]=='h' || a[i]=='H')
  44.                 a[i]='f';
  45.             else if(a[i]=='g' || a[i]=='G')
  46.                 a[i]='d';
  47.             else if(a[i]=='f' || a[i]=='F')
  48.                 a[i]='s';
  49.             else if(a[i]=='d' || a[i]=='D')
  50.                 a[i]='a';
  51.  
  52.             else if(a[i]=='/')
  53.                 a[i]=',';
  54.             else if(a[i]=='.')
  55.                 a[i]='m';
  56.             else if(a[i]==',')
  57.                 a[i]='n';
  58.             else if(a[i]=='m' || a[i]=='M')
  59.                 a[i]='b';
  60.             else if(a[i]=='n' || a[i]=='N')
  61.                 a[i]='v';
  62.             else if(a[i]=='b' || a[i]=='B')
  63.                 a[i]='c';
  64.             else if(a[i]=='v' || a[i]=='V')
  65.                 a[i]='x';
  66.             else if(a[i]=='c' || a[i]=='C')
  67.                 a[i]='z';
  68.  
  69.             else if(a[i]=='=')
  70.                 a[i]='0';
  71.             else if(a[i]=='-')
  72.                 a[i]='9';
  73.             else if(a[i]=='0')
  74.                 a[i]='8';
  75.             else if(a[i]=='9')
  76.                 a[i]='7';
  77.             else if(a[i]=='8')
  78.                 a[i]='6';
  79.             else if(a[i]=='7')
  80.                 a[i]='5';
  81.             else if(a[i]=='6')
  82.                 a[i]='4';
  83.             else if(a[i]=='5')
  84.                 a[i]='3';
  85.             else if(a[i]=='4')
  86.                 a[i]='2';
  87.             else if(a[i]=='3')
  88.                 a[i]='1';
  89.             else if(a[i]=='2')
  90.                 a[i]='`';
  91.         }
  92.         puts(a);
  93.     }
  94.     return 0;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement