[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:```c #include struct student { char num[20]; char name[20]; int score; int score1; int …… 题解列表 2020年02月01日 0 点赞 0 评论 667 浏览 评分:0.0
[编程入门]链表之报数问题-题解(C语言代码)循环链表处理 摘要:```c #include #include typedef struct node{ int num; struct node *next; }linklist; linklist…… 题解列表 2020年02月01日 0 点赞 0 评论 757 浏览 评分:0.0
字符逆序-题解(C++代码) 摘要:#思路 将一行字符串赋值给一个string,然后使用reverse将string的内容倒置。 #心得 1.使用reverse需要添加#include 2.string字符串可以直接使用str…… 题解列表 2020年02月01日 0 点赞 0 评论 1163 浏览 评分:0.0
蓝桥杯算法提高VIP-扫雷-题解(C++代码) 这题有毒吧,死活答案错误??请大家帮忙看看 摘要:# 废话不多说,直接贴代码 ``` /* 问题 1524: [蓝桥杯][算法提高VIP]扫雷 https://www.dotcpp.com/oj/problem1524.html */ #…… 题解列表 2020年02月01日 0 点赞 0 评论 734 浏览 评分:9.9
[编程入门]结构体之成绩统计2-题解(C语言代码) 摘要:```c #include struct student { char num[10]; char name[20]; int score; int score1; int …… 题解列表 2020年02月01日 0 点赞 0 评论 616 浏览 评分:0.0
蓝桥杯基础练习VIP-Huffuman树-题解(C++代码) 摘要:新学的排序正好派上用场 #include using namespace std; void merge(int a[],int low,int mid,int high…… 题解列表 2020年02月01日 0 点赞 0 评论 655 浏览 评分:0.0
字符串的输入输出处理-题解(C++代码)【心得体会】 摘要:#思路 先获得第一行的行数N,通过循环,使用getline直接获得前N行的数据,再使用cin获得后面的数据,一项项保存在vector容器中,最后输出。 #心得 1.getline直接获得一行的数…… 题解列表 2020年02月01日 0 点赞 0 评论 823 浏览 评分:0.0
IP判断-题解(C语言描述||理清逻辑) 摘要:```c #include int function(char a[20]) { int n=1,i=0,x1,x2,x3;//用x1,x2,x3作为标记,当为三位数时,满足小于 //2…… 题解列表 2020年02月01日 0 点赞 0 评论 523 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(C语言代码) 摘要: #include "stdio.h" int fun(int N) { int i,a,b,c,d; a=N/1000; b=(N-(a*1000))/100; c=…… 题解列表 2020年02月01日 0 点赞 0 评论 537 浏览 评分:0.0
[编程入门]宏定义之闰年判断-题解(C语言代码) 摘要:```c #include #include #define LEAP_YEAR(y) (y%4==0&&y%100!=0||y%400==0) void main() { int ye…… 题解列表 2020年02月01日 0 点赞 0 评论 695 浏览 评分:0.0