私信TA

用户名:uq_56613018273

访问量:1606

签 名:

等  级
排  名 3297
经  验 1971
参赛次数 0
文章发表 15
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

#include<stdio.h>
#include<math.h>
#include<string.h>

# define N 100001

int main()
{
    char a[100];
    char t[201];
    scanf("%[^\n]",t);
    for(int i = 0; i < 26; i++)
    {
        a[i + 'A'] = (char)( (i - 5 + 26) % 26 + 'A');
    }
    for(int i = 0; i < strlen(t); i++)
    {
        if(t[i] >= 'A' && t[i] <= 'Z')
        {
            printf("%c",a[t[i]]);
        }
        else printf("%c",t[i]);
    }
    // puts(t);
}


 

0.0分

0 人评分

  评论区

  • «
  • »