2014年1月31日 星期五

[UVA] 10222 - Decode the Mad man

/*20140201 hanting*/
#include <iostream>
using namespace std;
int main()
{
    string cs;
    string s="`1234567890-=qwertyuiop[]asdfghjkl;'zxcvbnm,./";
    while(getline(cin,cs))
    {
        for(int i=0;i<cs.size();i++)
        {
            if(cs[i]!=' ')
            {
                cs[i]=s[s.find(cs[i])-2];
            }
        }
        cout<<cs<<endl;
    }
    return 0;
}

沒有留言:

張貼留言