#include<stdio.h>
int main()
{
    int i;
    char a[85];
    while(gets(a)!=NULL)
    {
        for(i=0;a[i]!='\0';i++)
        if('A'<=a[i]&&a[i]<='Z')
        a[i]='Z'-a[i]+'A';
        puts(a);
    }
return 0;
}

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-06-25
  • 2022-12-23
  • 2021-12-11
  • 2022-12-23
  • 2021-06-17
猜你喜欢
  • 2022-12-23
  • 2022-02-13
  • 2021-10-23
  • 2022-12-23
  • 2021-10-03
  • 2021-08-18
相关资源
相似解决方案