大、小写问题 3行代码解决 摘要: public class 大小写问题 { public static void main(String[] args) { Scanner sc = new Scan…… 题解列表 2021年04月01日 0 点赞 0 评论 179 浏览 评分:0.0
超级超级简单的1124 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char p[100]; scanf("%s",p); for(int i=0;p[i]!='\0…… 题解列表 2024年11月26日 0 点赞 1 评论 89 浏览 评分:0.0
C语言训练-大、小写问题-题解(C语言代码) 摘要: #include int main() { int i; char a[50]; gets(a); …… 题解列表 2020年06月08日 0 点赞 0 评论 272 浏览 评分:0.0
ctype库函数 摘要:参考代码:#include <stdio.h> #include <ctype.h> int main() { int i=0; char a[101]; gets…… 题解列表 2019年01月12日 0 点赞 0 评论 474 浏览 评分:0.0
编写题解 1124: C语言训练-大、小写问题 摘要:```c //大、小写问题 #include #include void LowerConver(){ char s[100]; gets(s); int n = strlen…… 题解列表 2022年08月30日 0 点赞 0 评论 154 浏览 评分:0.0
C语言训练-大、小写问题-题解(C语言代码) 摘要:本人小白 错误之处还望多多指教 谢谢! ```c #include #include //函数声明 char myself_1(char ch_1[],char ch_2[]); …… 题解列表 2019年12月29日 0 点赞 0 评论 256 浏览 评分:0.0
C语言训练-大、小写问题 摘要:解题思路:利用for循环,查看ASCII码值即可注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100]; …… 题解列表 2023年10月09日 0 点赞 0 评论 76 浏览 评分:0.0
C语言训练-大、小写问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { int i; char s[101]; gets…… 题解列表 2018年06月01日 0 点赞 0 评论 364 浏览 评分:0.0
c语言超详解 摘要:解题思路:基本同上注意事项:充分的函数利用参考代码:#include<stdio.h>#include<ctype.h>#include<string.h> int main(){ char a[10…… 题解列表 2024年03月12日 0 点赞 0 评论 61 浏览 评分:0.0
1124: C语言训练-大、小写问题 摘要:解题思路:100以内的字符串,依次判断每个字符的值,是大写则切换成小写(+32);其它类型直接输出;注意事项:无参考代码:#include<stdio.h>#include<string.h>char…… 题解列表 2022年01月19日 0 点赞 0 评论 133 浏览 评分:0.0