题意:将字符串中的每个字符变为它的下一位字符。
解题思路:直接模拟。
Code:
#include <iostream>
#include <cstring>
#include <cstdio>
using namespace std;
char str[60];
int main()
{
//freopen("input.txt","r",stdin);
int T;
scanf("%d",&T);
getchar();
for(int i = 1; i <= T; i++)
{
gets(str);
int len = strlen(str);
printf("String #%d\n",i);
for(int j = 0; j < len; j++)
{
if(str[j] == 'Z') printf("A");
else printf("%c",str[j]+1);
}
printf("\n\n");
}
return 0;
}