1050: [编程入门]结构体之成绩记录 摘要:#include<stdio.h>struct data{ char xuehao[100]; char name[100]; …… 题解列表 2025年08月25日 0 点赞 0 评论 375 浏览 评分:0.0
1051: [编程入门]结构体之成绩统计2 摘要:#include<stdio.h>struct data{ char xuehao[100]; char name[100]; …… 题解列表 2025年08月25日 0 点赞 0 评论 405 浏览 评分:0.0
c++实现,思路简单明了 摘要:#代码#```cpp#include#includeusing namespace std;int main(){ string s1; int m; …… 题解列表 2025年08月25日 1 点赞 0 评论 397 浏览 评分:0.0
自己用类写的,感觉没有第二版好,可以看一下。 摘要:```cpp#includeusing namespace std;class Shijian{ private: int year; int month…… 题解列表 2025年08月25日 0 点赞 0 评论 406 浏览 评分:0.0
编写题解 1621: 蓝桥杯算法训练VIP-字符串编辑(每一行都有注释,一看就懂) 摘要: #include #include // 函数功能:删除字符串中第一个出现的字符a // 参数:str[]:要操作的字符串,a:要删除的目标字符 // …… 题解列表 2025年08月26日 0 点赞 0 评论 377 浏览 评分:0.0
编写题解 1728: 字符串的查找删除(注释十分详细,一看就懂) 摘要: #include #include #include //用于大小写字母转换函数,tolower(),toupper() // 从字符串str的p…… 题解列表 2025年08月26日 0 点赞 0 评论 361 浏览 评分:0.0
2024: 链表删除练习 摘要:#include<stdio.h>#include<stdlib.h>//创建结点类型typedef struct Node{ int data;&n…… 题解列表 2025年08月28日 0 点赞 0 评论 408 浏览 评分:0.0
1771: [编程入门]链表之节点删除 :自己记录 摘要:#include<stdio.h>#include<stdlib.h>//创建结点类型typedef struct Node{ int id;&nbs…… 题解列表 2025年08月28日 0 点赞 0 评论 437 浏览 评分:0.0
编写题解 1826: 蓝桥杯2015年第六届真题-切开字符串(注释清晰 一看就懂) 摘要: #include #include #include // 全局变量定义 char str[100001]; // 存储输…… 题解列表 2025年08月29日 0 点赞 0 评论 301 浏览 评分:0.0
编写题解 1122: C语言训练-亲密数(注释清晰 简单易懂) 摘要: #include // 全局数组用于存储已找到的亲密数,避免重复输出 int a[3000] = {0}; // 记录数组中已存储的亲密数数量 …… 题解列表 2025年08月29日 0 点赞 0 评论 444 浏览 评分:0.0