- 博客(2)
- 收藏
- 关注
原创 以前的作业——用顺序表编一个学生管理系统
#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 1740
原创 前段时间学习链表,编一个学生管理系统,欢迎指正
//编译预处理#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 209
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人