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

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

筛选

python 超简单写法

摘要:解题思路:注意事项:参考代码:x = input()if len(x) < 100:    print(x.lower())#数字太少不让发 这段别管 我随便加点sadadasddsadasdsada……

干净的解法

摘要:解题思路:python中有转换大小写的函数:upper()----所有字母大写;lower()----所有字母小写              注意事项:参考代码:st=input()         ……

容易理解的C语言代码

摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> void fun(char a[]) {     for (int i = 0;……