利用ASCII码进行大小写转换 摘要:解题思路:对应小写转换成大写字母,那就是ASCII码-32注意事项:参考代码:# define _CRT_SECURE_NO_WARNINGS 1# include<stdio.h>int…… 题解列表 2026年07月22日 0 点赞 0 评论 28 浏览 评分:0.0
莉露C++编写题解 1204: 大小写转换 摘要:解题思路:如C语言注意事项:str[i] != '\0'也可写作i<str.size()参考代码:#include<iostream>#include<cstd…… 题解列表 2026年02月27日 0 点赞 0 评论 147 浏览 评分:0.0
莉露C语言编写题解 1204: 大小写转换 摘要:解题思路:'A'=65;'Z'=90;'a'=97;'z'=122注意事项:str[strcspn(str, "\n"…… 题解列表 2026年02月27日 0 点赞 0 评论 158 浏览 评分:0.0
2025/8/18刷题记录 摘要:解题思路:End of file意思是输入不为null注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){&nb…… 题解列表 2025年08月18日 0 点赞 0 评论 382 浏览 评分:0.0
1204 大小写转换111111111 摘要:解题思路: 小转大upper()注意事项:参考代码:a=input()b=input()c=input()a1=a.upper()b1=b.upper()c1=c.upper()print(a1)pr…… 题解列表 2025年03月09日 0 点赞 0 评论 736 浏览 评分:0.0
大小写转换 摘要:解题思路:模拟注意事项:参考代码:#include<iostream>#include<iomanip>usingnamespacestd;…… 题解列表 2025年02月03日 1 点赞 0 评论 612 浏览 评分:0.0
最简单易懂的解法 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <ctype.h>#include <string.h>int main(){ char a[80]; …… 题解列表 2024年11月21日 0 点赞 0 评论 712 浏览 评分:0.0
1204: 大小写转换 摘要:核心: name = 'Hello World' print(name.lower()) # 大写转小写 print(name.upper()) # 小写转大写 …… 题解列表 2024年08月18日 0 点赞 0 评论 982 浏览 评分:0.0
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年02月03日 0 点赞 0 评论 585 浏览 评分:9.9
大小写转换(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char ch[100]; while(gets(ch)){//while多…… 题解列表 2023年11月25日 0 点赞 0 评论 692 浏览 评分:0.0