
作
文章平均质量分 77
with_anorchid
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
以前的作业——用顺序表编一个学生管理系统
#include<stdio.h> #include<stdlib.h> #include<string.h> #include<conio.h> typedef struct { int num; char name[15]; double score; }STD; typedef struct { STD...原创 2018-05-06 19:31:14 · 1770 阅读 · 0 评论 -
前段时间学习链表,编一个学生管理系统,欢迎指正
//编译预处理#include<stdio.h>#include<stdlib.h>#include<string.h>#include<conio.h>//自定义数据类型typedef struct{ int num; char name[20]; double score;}STD;typedef struct lnode{ STD data; ...原创 2018-05-06 19:16:35 · 230 阅读 · 0 评论