C语言实验——字符编码 (sdut oj)


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 密码


Example Input

China


Example Output

password is Glmre


Hint

 

Author








参考代码


#include
int main(void)
{
    char str[100];
    scanf("%s",str);
    printf("password is ");
    int i;
    for(i = 0; i < 5; i++)
        printf("%c",str[i]+4);
    printf("\n");
    return 0;
}


你可能感兴趣的:(SDUTOJ,实验9-字符数组的运用)