题解 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;……

大、小写问题 3行代码解决

publicclass大小写问题{publicstaticvoidmain(String[]args){Scannersc=newScanner(System.in);Stringa=sc.nextLine();System.out.println(a.toLowerCase());}}Scanner

改学python吧!!!

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

简便易懂c代码

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