1204: 大小写转换 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char str[85] = {0}; …… 题解列表 2022年10月26日 0 点赞 0 评论 315 浏览 评分:0.0
大小写转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[100]; int i; while(g…… 题解列表 2017年09月08日 0 点赞 0 评论 1358 浏览 评分:0.0
1204: 大小写转换 摘要:核心: name = 'Hello World' print(name.lower()) # 大写转小写 print(name.upper()) # 小写转大写 …… 题解列表 2024年08月18日 0 点赞 0 评论 860 浏览 评分:0.0
最简单易懂的解法 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <ctype.h>#include <string.h>int main(){ char a[80]; …… 题解列表 2024年11月21日 0 点赞 0 评论 608 浏览 评分:0.0
大小写转换 摘要:解题思路:模拟注意事项:参考代码:#include<iostream>#include<iomanip>usingnamespacestd;…… 题解列表 2025年02月03日 1 点赞 0 评论 507 浏览 评分: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 评论 623 浏览 评分:0.0
2025/8/18刷题记录 摘要:解题思路:End of file意思是输入不为null注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){&nb…… 题解列表 2025年08月18日 0 点赞 0 评论 276 浏览 评分:0.0
莉露C语言编写题解 1204: 大小写转换 摘要:解题思路:'A'=65;'Z'=90;'a'=97;'z'=122注意事项:str[strcspn(str, "\n"…… 题解列表 2026年02月27日 0 点赞 0 评论 47 浏览 评分:0.0
莉露C++编写题解 1204: 大小写转换 摘要:解题思路:如C语言注意事项:str[i] != '\0'也可写作i<str.size()参考代码:#include<iostream>#include<cstd…… 题解列表 2026年02月27日 0 点赞 0 评论 37 浏览 评分:0.0
大小写转换 摘要:解题思路:18:45:48注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[100];int i,n;while(scan…… 题解列表 2021年12月25日 0 点赞 0 评论 369 浏览 评分:0.0