莉露C++编写题解 1204: 大小写转换 摘要:解题思路:如C语言注意事项:str[i] != '\0'也可写作i<str.size()参考代码:#include<iostream>#include<cstd…… 题解列表 2026年02月27日 0 点赞 0 评论 31 浏览 评分:0.0
大小写转换 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String args[]){ …… 题解列表 2018年05月10日 0 点赞 0 评论 931 浏览 评分:0.0
大小写转换 (Java代码) 摘要:解题思路:注意事项:参考代码:public class 大小写转换 { public static void main(String[] args) { // TODO Auto-gen…… 题解列表 2018年05月11日 0 点赞 0 评论 1745 浏览 评分:0.0
大小写转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char c[80]; while(scan…… 题解列表 2018年05月12日 0 点赞 0 评论 1120 浏览 评分:0.0
莉露C语言编写题解 1204: 大小写转换 摘要:解题思路:'A'=65;'Z'=90;'a'=97;'z'=122注意事项:str[strcspn(str, "\n"…… 题解列表 2026年02月27日 0 点赞 0 评论 46 浏览 评分:0.0
2025/8/18刷题记录 摘要:解题思路:End of file意思是输入不为null注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){&nb…… 题解列表 2025年08月18日 0 点赞 0 评论 275 浏览 评分: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 评论 618 浏览 评分:0.0
1204: 大小写转换 摘要:核心: name = 'Hello World' print(name.lower()) # 大写转小写 print(name.upper()) # 小写转大写 …… 题解列表 2024年08月18日 0 点赞 0 评论 857 浏览 评分:0.0
大小写转换 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> #include<cmath> #include<algorithm> using nam…… 题解列表 2019年04月04日 0 点赞 0 评论 1472 浏览 评分:0.0
大小写转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[80]; int k,i; while(scanf("%s"…… 题解列表 2019年04月22日 0 点赞 0 评论 797 浏览 评分:0.0