#include<iostream>#include<iomanip>#define OK 1#define ERROR 0#define OVERFLOW -2#define MAXSIZE 1000 //图书表可能达到的最大长度using namespace std;typedef struct{//图书信息定义 char no[20]; //图书ISBN char name[50]; //图书名字 float price; //图书价格}Book;