简便易懂c代码 摘要:解题思路:直接头文件代入参考代码:#include<stdio.h>#include<ctype.h>int main(){ char a[100]; int i; gets(a);…… 题解列表 2021年02月16日 0 点赞 0 评论 1039 浏览 评分:9.9
C语言训练-大、小写问题-题解(C语言代码) 摘要:#include<stdio.h> #include<string.h> int main() { char str[100]; int i,k;//变量的定义 gets(str)…… 题解列表 2021年02月19日 0 点赞 0 评论 571 浏览 评分:0.0
改学python吧!!! `````python#1124大小写问题st=input()print(st.lower())`````//凑字数、凑字数、凑字数、凑字数、凑字数、凑字数:kissing_heart: 题解列表 2021年03月05日 0 点赞 0 评论 723 浏览 评分:9.9
大、小写问题 3行代码解决 publicclass大小写问题{publicstaticvoidmain(String[]args){Scannersc=newScanner(System.in);Stringa=sc.nextLine();System.out.println(a.toLowerCase());}}Scanner 题解列表 2021年04月01日 0 点赞 0 评论 919 浏览 评分:0.0
容易理解的C语言代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> void fun(char a[]) { for (int i = 0;…… 题解列表 2021年04月07日 0 点赞 0 评论 514 浏览 评分:0.0
干净的解法 摘要:解题思路:python中有转换大小写的函数:upper()----所有字母大写;lower()----所有字母小写 注意事项:参考代码:st=input() …… 题解列表 2021年04月10日 0 点赞 0 评论 932 浏览 评分:0.0
python 超简单写法 摘要:解题思路:注意事项:参考代码:x = input()if len(x) < 100: print(x.lower())#数字太少不让发 这段别管 我随便加点sadadasddsadasdsada…… 题解列表 2021年05月04日 0 点赞 0 评论 600 浏览 评分:0.0
编写题解 1124: C语言训练-大、小写问题 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>int main(){ char a[100]; …… 题解列表 2021年07月08日 0 点赞 0 评论 572 浏览 评分:0.0
1124:大小写转化问题(C语言,Java)@@ 摘要:参考代码:解法一:C语言#include <stdio.h> int main( ) { int i; char a[128] //ASCII码从0开始到127 …… 题解列表 2021年07月12日 0 点赞 0 评论 699 浏览 评分:9.9
题解 1124: C语言训练-大、小写问题(C语言) 摘要:解题思路:用if语句判断,如果是大写字母,根据ASCII码表得小写字母是大写字母加上32得,x=x+'a'-'A'也可以写成x=x+32参考代码:#includeint…… 题解列表 2021年07月27日 0 点赞 0 评论 644 浏览 评分:0.0