不是VIP会员,不能显示答案

题目解答

题目:
#include <cstdio>
char st[100];
int main()
{
scanf("%s", st);
for (int i = 0; st[i]; ++i)
{
if ('A'<= st[i] && st[i] <= 'Z')
st[i] += 1;
}
printf("%s\n", st);
return 0;
}
输入:QuanGuoLianSai
输出:
输出:RuanHuoNianTai
考点: 0
分析:
解答: 大写字母加1
评论:
老师: 0