- 6
- 0
- 约7.63千字
- 约 14页
- 2017-06-15 发布于湖南
- 举报
c图书馆管理系统
图书馆管理系统
//图书管理系统
#include iostream
#include iomanip
#include string
#include fstream
using namespace std;
const int Maxb=10000; //最多的图书
class Book//图书类
{
int tag; //删除标记1:已删0:未删
int no; //图书编号
char name[20]; //书名
char author[10]; //作者名
char no2[10];//输入分类号
char dan[20];//输入出版单位
char time[20];//出版时间
int price;//价格
public:
Book() {}
char *getname() { return name; } //获取姓名
int getno() { return no; }//获取图书编号
int gettag() { return tag; } //获取删除标记
char *getauthor() {return author;}
原创力文档

文档评论(0)