C语言实验——字符编码
Time Limit: 1000MS
Memory Limit: 65536KB
Problem Description
请将一串长度为5的纯字母文本译成一个密码,密码规律如下:用原来的字母后面的第4个字母代替原来的字母。如C用G代替(文本中不存在W/w、X/x、Y/y、Z/z等字母),最后得到的文本即为密码。
Input
输入一串文本,长度固定为5。
Output
输出对应的密码。格式为:
password is 密码
password is 密码
Example Input
China
Example Output
password is Glmre
Hint
Author
<