• 大小: 4KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-07
  • 语言: C/C++
  • 标签: c语言中  

资源简介

c语言实现的图书管理系统 对书籍进行添加 删除等等操作 功能完善

资源截图

代码片段和文件信息

/*2016.2.29
调试程序遇到的问题:借还书逻辑有错误,正在修改
*/
#pragma warning(disable:4996)
//     包含文件
#include
#include
#include
#include
#include
#include




//                  结构体的定义
FILE *fp;
struct student
{
char no[5];
char name[9];
char location[9];
struct student *next;
};                                          //学生结构体                        
struct book
{
char no[10];
char name[10];
char press[11] a[3];
float price;
struct book *next;
};                                         //图书结构体
struct borrow
{
char stuno[5];
char bono[9];
long time;
float fine;
struct borrow *next;
};                                            //借阅结构体


  //                 函数的声明
struct student *creat

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件       21489  2017-11-18 09:43  图书.cpp

评论

共有 条评论