Problem2942--自定义函数--字母变到下1个

2942: 自定义函数--字母变到下1个

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 60  Solved: 25
[Status] [Submit] [Creator:]

Description

输入n个字符串,将每一个字母变到后1个,
a->b
b->c
...
x->y
y->z
z->a

Input

第一行一个整数n
接下来n行,每行一个字符串(不含空格)

Sample Input Copy

3
apple
pen
banana

Sample Output Copy

bqqmf
qfo
cbobob

Source/Category