解题思路:获得一个输入进行判断直接输出就行。
注意事项:
参考代码:
#include<stdio.h>
#include<ctype.h>
int main()
{
char c;
while(scanf("%c" ,&c)==1){
if(c=='\n') break;
if(isalpha(c)) printf("%c" ,c+1);
else printf("%c" ,c);
}
return 0;
}
0.0分
0 人评分
C二级辅导-公约公倍 (C语言代码)浏览:1550 |
C语言训练-列出最简真分数序列* (C语言代码)浏览:543 |
C语言训练-求函数值 (C语言代码)浏览:976 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:573 |
【亲和数】 (C语言代码)浏览:530 |
Pascal三角 (C语言代码)浏览:1252 |
字符串比较 (C语言代码)答案错误????浏览:641 |
程序员的表白 (C语言代码)浏览:706 |
字符串的输入输出处理 (C语言代码)浏览:1019 |
C语言程序设计教程(第三版)课后习题7.1 (C语言代码)浏览:1267 |