题解 1124: C语言训练-大、小写问题

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

超级超级简单的1124

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char p[100]; scanf("%s",p); for(int i=0;p[i]!=&#39;\0&#3……

ctype库函数

摘要:参考代码:#include <stdio.h> #include <ctype.h> int main() {     int i=0;     char a[101];     gets……

C语言训练-大、小写问题

摘要:解题思路:利用for循环,查看ASCII码值即可注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){    char a[100];    ……

c语言超详解

摘要:解题思路:基本同上注意事项:充分的函数利用参考代码:#include<stdio.h>#include<ctype.h>#include<string.h> int main(){ char a[10……

1124: C语言训练-大、小写问题

摘要:解题思路:100以内的字符串,依次判断每个字符的值,是大写则切换成小写(+32);其它类型直接输出;注意事项:无参考代码:#include<stdio.h>#include<string.h>char……