自定义函数之字符提取(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void a(){ char x[100],y[100]; int z=…… 题解列表 2026年06月17日 0 点赞 0 评论 92 浏览 评分:0.0
遍历筛选法 摘要:解题思路:注意事项:注意后面输出的时候,是<k,不要越过了数组的界限参考代码:#include <stdio.h>#include <string.h>int main(…… 题解列表 2026年04月02日 0 点赞 0 评论 187 浏览 评分:0.0
1033: [编程入门]自定义函数之字符提取 摘要:#include<stdio.h>#include<string.h>voidfind_char(char*str,&n…… 题解列表 2025年12月10日 1 点赞 0 评论 491 浏览 评分:0.0
有没有·大佬看看 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>voidtiqu(char[]);intmain()…… 题解列表 2025年10月30日 1 点赞 1 评论 386 浏览 评分:0.0
[编程入门]自定义函数之字符提取 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>void find_char(char *str, char *resu…… 题解列表 2025年10月30日 0 点赞 0 评论 492 浏览 评分:10.0
1033 元音字符提取 摘要:解题思路:注意事项:题目只需要考虑小写情况参考代码:#include<stdio.h>int main(){ char a[1000]; char b[1000]; gets(a); in…… 题解列表 2025年03月27日 3 点赞 0 评论 811 浏览 评分:0.0
自定义字符提取 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100];&…… 题解列表 2025年01月24日 0 点赞 0 评论 762 浏览 评分:0.0
先转化为小写 摘要:#include<stdio.h> #include<ctype.h> int main(void) { char a[100]; char target[100]; …… 题解列表 2024年12月28日 0 点赞 0 评论 400 浏览 评分:0.0
1033: [编程入门]自定义函数之字符提取 摘要: #include int main() { char a[1000]; char s[1000]; gets(a); int…… 题解列表 2024年12月07日 1 点赞 0 评论 1037 浏览 评分:10.0
利用指针,switch语句精简代码,给小白理清楚指针思路 摘要:解题思路:这个题有很多办法可以投机取巧,但是仍然建议小白脚踏实地,强化基础。我们利用指针实现对字符串的访问,无需多余的索引,常数,小白可以思考为什么指针a,b进入函数过后,再出来,他们指向的地址没有变…… 题解列表 2024年11月24日 5 点赞 0 评论 795 浏览 评分:10.0