解题思路:
注意事项:
参考代码:
#include<stdio.h>
#include<string.h>
#define Long 80//允许输入字符串长度
int main()
{
void telegraph_decrypt(char* telegraph, int n);
char telegraph[Long];
gets_s(telegraph, Long);
telegraph_decrypt(telegraph, strlen(telegraph));
printf("%s", telegraph);
return 0;
}
void telegraph_decrypt(char * telegraph,int n)
{
int i;
for (i=0; i < n; i++)
{
if (*(telegraph + i) >= 'a' && *(telegraph + i) <= 'y')*(telegraph + i)=*(telegraph + i) + 1;
else if (*(telegraph + i) == 'z')*(telegraph + i) = *(telegraph + i) - 25;
}
}
0.0分
0 人评分
永远的丰碑 (C语言代码)浏览:698 |
C语言程序设计教程(第三版)课后习题6.3 (Java代码)浏览:695 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:717 |
打水问题 (C语言代码)浏览:1148 |
输出正反三角形 (C语言代码)格式错误!!!浏览:1177 |
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:503 |
文科生的悲哀 (C语言代码)浏览:1538 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:561 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:594 |
sizeof的大作用 (C语言代码)浏览:1138 |