- 博客(2)
- 收藏
- 关注
原创 图书管理系统C++(顺序表,链表)
#一个简单的C++应用,创建最基础的图书管理系统 #include #include using namespace std; #define ok 1 #define error 0 #define maxsize 100 #define overflow -2 typedef struct { string ID; string name; float price; }book; typedef struct { book* elem; int length; }sqlist; int initlist
2020-09-16 20:33:26
5111
4
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人