编写题解 1728: 字符串的查找删除(注释十分详细,一看就懂) 摘要: #include #include #include //用于大小写字母转换函数,tolower(),toupper() // 从字符串str的p…… 题解列表 2025年08月26日 0 点赞 0 评论 8 浏览 评分:0.0
编写题解 1621: 蓝桥杯算法训练VIP-字符串编辑(每一行都有注释,一看就懂) 摘要: #include #include // 函数功能:删除字符串中第一个出现的字符a // 参数:str[]:要操作的字符串,a:要删除的目标字符 // …… 题解列表 2025年08月26日 0 点赞 0 评论 10 浏览 评分:0.0
1051: [编程入门]结构体之成绩统计2 摘要:#include<stdio.h>struct data{ char xuehao[100]; char name[100]; …… 题解列表 2025年08月25日 0 点赞 0 评论 32 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 摘要:#include<stdio.h>struct data{ char xuehao[100]; char name[100]; …… 题解列表 2025年08月25日 0 点赞 0 评论 24 浏览 评分:0.0
1047: [编程入门]报数问题 摘要:#include<stdio.h>int main(){ int x, m; scanf("%d" , &x…… 题解列表 2025年08月25日 0 点赞 0 评论 23 浏览 评分:0.0
1045: [编程入门]自定义函数之整数处理 摘要:#include<stdio.h>void min(int *num){ int temp = num[0]; int flag1;&n…… 题解列表 2025年08月25日 0 点赞 0 评论 14 浏览 评分:0.0
题解:母牛的故事(递归) 摘要:#include<stdio.h>intIndex(intn){ inta[1000]={}; intf…… 题解列表 2025年08月24日 1 点赞 0 评论 30 浏览 评分:0.0
1226: 方砖问题 直观图解 摘要:#include using namespace std;int main() { int n = 0,a=0,min=0; cin >> n; for (int i = 0; i…… 题解列表 2025年08月22日 1 点赞 0 评论 36 浏览 评分:10.0
题解:求子串位置的定位函数 摘要:#include<stdio.h>#include<string.h>intIndex(chara[],char&n…… 题解列表 2025年08月22日 0 点赞 0 评论 24 浏览 评分:0.0
编写题解 1463: 蓝桥杯基础练习VIP-Sine之舞(注释清晰 简单易懂) 摘要: #include //参数: //n:输入的数字,决定递归次数 //t:初始为0开始递归时自增为1,表示从sin(1)开始 //count:字符信号标志…… 题解列表 2025年08月21日 0 点赞 0 评论 63 浏览 评分:0.0