1124: C语言训练-大、小写问题-题解(python) 摘要:解题思路:直接使用lower函数,将所有大写字母转化为小写注意事项:参考代码:a = input().lower()print(a)…… 题解列表 2021年10月19日 0 点赞 0 评论 185 浏览 评分:0.0
1124: C语言训练-大、小写问题 摘要:注意事项:看代码!!!参考代码:#include<stdio.h>#include<string.h>int main(){ char s[100]; gets(s); int l…… 题解列表 2021年10月12日 0 点赞 0 评论 768 浏览 评分:6.0
[编程入门]大、小写问题-题解(C语言代码) 摘要:解题思路:获取大小,判断ascii码,如果是大写字母就加32注意事项:无参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100];…… 题解列表 2021年08月14日 0 点赞 0 评论 139 浏览 评分:0.0
题解 1124: C语言训练-大、小写问题(C语言) 摘要:解题思路:用if语句判断,如果是大写字母,根据ASCII码表得小写字母是大写字母加上32得,x=x+'a'-'A'也可以写成x=x+32参考代码:#includeint…… 题解列表 2021年07月27日 0 点赞 0 评论 249 浏览 评分:0.0
1124:大小写转化问题(C语言,Java)@@ 摘要:参考代码:解法一:C语言#include <stdio.h> int main( ) { int i; char a[128] //ASCII码从0开始到127 …… 题解列表 2021年07月12日 0 点赞 0 评论 259 浏览 评分:9.9
编写题解 1124: C语言训练-大、小写问题 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>int main(){ char a[100]; …… 题解列表 2021年07月08日 0 点赞 0 评论 140 浏览 评分:0.0
python 超简单写法 摘要:解题思路:注意事项:参考代码:x = input()if len(x) < 100: print(x.lower())#数字太少不让发 这段别管 我随便加点sadadasddsadasdsada…… 题解列表 2021年05月04日 0 点赞 0 评论 159 浏览 评分:0.0
干净的解法 摘要:解题思路:python中有转换大小写的函数:upper()----所有字母大写;lower()----所有字母小写 注意事项:参考代码:st=input() …… 题解列表 2021年04月10日 0 点赞 0 评论 169 浏览 评分:0.0
容易理解的C语言代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> void fun(char a[]) { for (int i = 0;…… 题解列表 2021年04月07日 0 点赞 0 评论 97 浏览 评分:0.0
大、小写问题 3行代码解决 摘要: public class 大小写问题 { public static void main(String[] args) { Scanner sc = new Scan…… 题解列表 2021年04月01日 0 点赞 0 评论 177 浏览 评分:0.0