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

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

筛选

简便易懂c代码

摘要:解题思路:直接头文件代入参考代码:#include<stdio.h>#include<ctype.h>int main(){    char a[100];    int i;    gets(a);……

改学python吧!!!

摘要:`````python #1124 大小写问题 st = input() print(st.lower()) ````` //凑字数、凑字数、凑字数、凑字数、凑字数、凑字数:kissin……

容易理解的C语言代码

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

干净的解法

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

python 超简单写法

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