解题思路:
注意事项:
参考代码:
#include "stdio.h"
#include "string.h"
#include "math.h"
int main()
{
char X[201];
while (1)
{
gets(X);
if (strcmp(X, "ENDOFINPUT") == 0) { break; }
if (strcmp(X, "START") == 0) { continue; }
if (strcmp(X, "END") == 0) { continue; }
for (int i = 0; X[i]!= '\0'; i++)
{
if (X[i] >= 'A' && X[i] <= 'Z')
{
X[i] = 'A' + (X[i]-'A'-5+26) % 26;
}
}
puts(X);
}
}
0.0分
0 人评分
文科生的悲哀 (C语言代码)浏览:1538 |
1054题解浏览:516 |
Hello, world! (C语言代码)浏览:916 |
字符串的输入输出处理 (C语言代码)浏览:1085 |
C语言程序设计教程(第三版)课后习题8.5 (C语言代码)浏览:710 |
C语言程序设计教程(第三版)课后习题1.6 (C语言代码)浏览:827 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:801 |
求教大神。。。。1063,统计字符。浏览:11704 |
1074题 初学者,求帮忙看下,不知道哪错了浏览:297 |
【出圈】 (C语言代码)浏览:1025 |