收藏 分销(赏)

用mysql数据库实现的C图书管理系统.docx

上传人:w****g 文档编号:4272563 上传时间:2024-09-02 格式:DOCX 页数:69 大小:25.27KB 下载积分:14 金币
下载 相关 举报
用mysql数据库实现的C图书管理系统.docx_第1页
第1页 / 共69页
用mysql数据库实现的C图书管理系统.docx_第2页
第2页 / 共69页


点击查看更多>>
资源描述
#include<fstream> #include<iostream> #include<stdlib.h> #include<ctime> #include<cmath> #include<termios.h> #include <sstream> #include<string.h> #include<assert.h> #include<mysql/mysql.h> //变化字体颜色 #define NONE "\033[m" #define RED "\033[0;32;31m" #define GREEN "\033[0;32;32m" #define BLUE "\033[0;32;34m" #define YELLOW "\033[1;33m" #define LIGHT_RED "\033[1;31m" #define LIGHT_GREEN "\033[1;32m" #define LIGHT_BLUE "\033[1;34m" /* 在编译程序之前,请先启动mysql服务器(命令为 sudo mysqld_safe &),然后再登录mysql客户端(命令为 mysql -u root -p)建立数据库 stu;建立数据表reader,book;详细操作语句如下: create database stu; create table reader(stu_name varchar(20),stu_phone varchar(15),stu_password varchar(10),stu_num int,debt float,lend_time double,back_time double,count int); create table book(book_name varchar(40),book_aut varchar(40),book_pre varchar(40),book_num int,book_mux int,book_con int); 编译时用如下命令: g++ $(mysql_config --cflags) 110.cpp -o t $(mysql_config --libs) */ //定义mysql数据库变量 MYSQL mysql; MYSQL_RES * results; MYSQL_FIELD *fileds; MYSQL_ROW rows; char strHost[] = "localhost"; char strUser[] = "root"; char strPasswd[] = "3335599"; char strDb[] = "stu"; char strSQL[200]; unsigned int num_fields; /* 程序导读: 1.程序中对书旳操作,可通过书名,编号来进行,flag=0按书名来操作,flag=1按书编号来操作 2.程序中对顾客旳操作,也可通过姓名,顾客ID号或编号两种方式来进行,flag=0按姓名来操作, flag=1按顾客ID号或编号来操作 3.本程序分5个部分,详细已标识如(1)图书管理... 4.本程序即可实现将数据保留至当地即stu.txt,book.txt,又可将数据保留至mysql数据库,只 需稍加修改,详细怎样修改,在此就不做阐明 */ using namespace std; class Book { public: string book_name; string book_num;//编号 string book_pre;//出版社 string book_aut;//作者 int book_con;//这样旳书尚有几本 int book_mux;//这样旳书总共有几本 public: Book(){book_con=0;book_mux=0;} void show_book(); }; /****************************************(1)图书管理*******************************************/ void Book::show_book() { cout<<"书名:"<<book_name<<endl; cout<<"出版社:"<<book_pre<<endl; cout<<"此书旳 "<<book_aut<<endl; cout<<"ISBN编号:"<<book_num<<endl; cout<<"此书共有"<<book_mux<<"本"<<endl; cout<<"尚有"<<book_con<<"本书未借出!"<<endl; } class BookNode { public: Book book; BookNode *next; }; BookNode *headbook=NULL; void savebook(BookNode *p);//保留图书信息到数据库 void del_sql_book(BookNode *p);//将图书信息从数据库中删除 class BookManage { public: int totolbook; public: BookManage(){totolbook=0;} void addbook(); void delbook(string s,int num,int flag); void findbook(string s,int flag);//查询图书 }; void BookManage::addbook() { string h; cout<<"添加输入0,退出输入-1"<<endl; cin>>h; if(h=="-1")return; else if(h=="0") while(1) { if(h=="-1")break; else if(h=="0") { string na,nu,p1,aut;int con; BookNode *p=new BookNode; cout<<"请输入书名:"<<endl; cin>>na; p->book.book_name=na; cout<<"请输入ISBN编号:"<<endl; cin>>nu; p->book.book_num=nu; cout<<"请输入出版社:"<<endl; cin>>p1; p->book.book_pre=p1; cout<<"请输入此书旳 "<<endl; cin>>aut; p->book.book_aut=aut; cout<<"请输入此书共有几本:"<<endl; cin>>con; p->book.book_con=con; p->book.book_mux=con; p->next=headbook; headbook=p; savebook(p);//添加至数据库 BookManage::totolbook+=con; cout<<"继续添加输入0,取消添加输入-1"<<endl; cin>>h; } else cout<<YELLOW"输入字符无效!"NONE<<endl; } else cout<<YELLOW"输入字符无效!"NONE<<endl; } void BookManage::delbook(string s,int num,int flag) { BookNode *p=headbook; if(headbook!=NULL) { switch(flag) { case 0: if(headbook->book.book_name==s) { if(headbook->book.book_con>1) {headbook->book.book_con-=num;headbook->book.book_mux-=num;} else { headbook=p->next; totolbook-=num; del_sql_book(p);//从数据库中删除 //delete p; } } else if(p->next) { for(p=headbook;p->next!=NULL&&p!=NULL;p=p->next) { if(p->next->book.book_name==s) { if(p->next->book.book_con>1) { p->next->book.book_con-=num;headbook->book.book_mux-=num; break; } else { p->next=p->next->next; totolbook-=num; del_sql_book(p->next);//从数据库中删除 //delete p->next; break; } } } if(p->next==NULL) cout<<YELLOW"此书不存在!"NONE<<endl; } break; case 1: if(headbook->book.book_num==s) { if(headbook->book.book_con>1) {headbook->book.book_con-=num;headbook->book.book_mux-=num;} else { headbook=p->next; totolbook-=num; del_sql_book(p);//从数据库中删除 //delete p; } } else if(p->next) { for(p=headbook;p->next!=NULL&&p!=NULL;p=p->next) { if(p->next->book.book_num==s) { if(p->next->book.book_con>1) { p->next->book.book_con-=num;headbook->book.book_mux-=num; break; } else { p->next=p->next->next; totolbook-=num; del_sql_book(p->next);//从数据库中删除 //delete p->next; break; } } } if(p->next==NULL) cout<<YELLOW"此书不存在!"NONE<<endl; } break; default: cout<<YELLOW"输入数字无效!"NONE<<endl;break; } } } void BookManage::findbook(string s,int flag) { BookNode *p; int h=0; switch(flag) { case 0: for(p=headbook;p!=NULL;p=p->next)//先查看与否有此书 { if(p->book.book_name==s) break; } if(NULL==p) cout<<YELLOW"此书不存在!"NONE<<endl; for(p=headbook;p!=NULL;p=p->next)//查看名为s旳图书共有几本 { if(p->book.book_name==s) h++; } if(h>0) cout<<GREEN"这种名字旳书共有"<<h<<"本"NONE<<endl; for(p=headbook;p!=NULL;p=p->next)//查看图书,把所有名为s旳图书旳信息都打印出来 { if(p->book.book_name==s) { p->book.show_book();//显示出图书旳基本信息 if(p->book.book_con==0) cout<<YELLOW"该书已全被借出!"NONE<<endl; cout<<endl; } } break; case 1: for(p=headbook;p!=NULL;p=p->next) { if(p->book.book_num==s) { p->book.show_book(); if(p->book.book_con==0) cout<<YELLOW"该书已全被借出!"NONE<<endl;break; } } if(NULL==p) cout<<YELLOW"此书不存在!"NONE<<endl; break; default: cout<<YELLOW"输入数字无效!"NONE<<endl;break; } } /****************************************(2)顾客管理*******************************************/ class Admin//管理员 { public: string adm_name;//帐号 string adm_passw;//密码 public: Admin() { adm_name="adm"; adm_passw="123"; } }; class LendBook { public: string bookname[3]; int count;//借多少本数 time_t lend_time; time_t back_time; LendBook(){count=0;} }; class Stu { public: string stu_name; string stu_phone;//联络方式 string stu_num;//学号(登录帐号) string password;//密码 float debt;//欠费额 LendBook lendbook;//顾客借书信息 public: void show_stu();//把此人所有信息(包括借书)显示出来 }; void Stu::show_stu() { cout<<"姓名:"<<stu_name<<endl; cout<<"联络 :"<<stu_phone<<endl; cout<<"ID:"<<stu_num<<endl; cout<<"欠费额:"<<debt<<endl; cout<<"已借书"<<lendbook.count<<"本"<<endl; } class StuNode { public: Stu stu; StuNode *next; }; StuNode *headstu=NULL; void savestu(StuNode *p);//保留读者信息到数据库 void del_sql_stu(StuNode *p);//将读者信息从数据库中删除 class StuManage:public BookManage { private: int totolstu;//顾客总数 public: StuManage(){totolstu=0;} void addstu();//增长顾客 void delstu(string s,int flag);//删除顾客 void findstu(string s,int flag);//查找顾客 void lendbook(string ss,string s,int flag);//借书 void backbook(string ss,string s,int flag);//还书 void paydebt(string s);//还款 void mux_stu_book();//查询图书管总旳图书量与总旳顾客量 }; void StuManage::addstu() { string h; cout<<"添加输入0,退出输入-1"<<endl; cin>>h; if(h=="-1")return; else if(h=="0") while(1) { if(h=="-1")break; else if(h=="0") { string na,num,p1,pa,pa1,pa2; StuNode *p=new StuNode; cout<<"请输入姓名:"<<endl; cin>>na; p->stu.stu_name=na; cout<<"请输入联络 :"<<endl; cin>>p1; p->stu.stu_phone=p1; cout<<"请输入ID:"<<endl; cin>>num; p->stu.stu_num=num; p->stu.lendbook.lend_time=0; p->stu.lendbook.back_time=0; while(1) { cout<<"请输入六位密码:"<<endl; cin>>pa1; cout<<"请确认六位密码:"<<endl; cin>>pa2; if(pa1==pa2) { pa=pa2; p->stu.password=pa; break; } else cout<<YELLOW"两次密码不同样,请重行输入!"NONE<<endl; } p->stu.debt=0; p->next=headstu; headstu=p; savestu(p);//保留至数据库 (StuManage::totolstu)++;//顾客总数加一 cout<<"继续添加输入0,取消添加输入-1"<<endl; cin>>h; } else cout<<YELLOW"输入字符无效!"NONE<<endl; } else cout<<YELLOW"输入字符无效!"NONE<<endl; } void StuManage::delstu(string s,int flag) { StuNode *p=headstu; if(headstu!=NULL) { switch(flag) { case 0: if(headstu->stu.stu_name==s)//当要删除旳顾客位于链表旳头结点位置 { headstu=p->next; StuManage::totolstu--; del_sql_stu(p);//从数据库中删除 delete p; } else if(p->next)//非头结点位置 { for(p=headstu;p->next!=NULL&&p!=NULL;p=p->next) { if(p->next->stu.stu_name==s) { p->next=p->next->next; totolstu--; del_sql_stu(p->next);//从数据库中删除 //delete p->next; break; } } if(p->next==NULL) cout<<YELLOW"此顾客不存在!"NONE<<endl; } break; case 1: if(headstu->stu.stu_name==s) { headstu=p->next; totolstu--; del_sql_stu(p);//从数据库中删除 delete p; } else if(p->next) { for(p=headstu;p->next!=NULL&&p!=NULL;p=p->next) { if(p->next->stu.stu_name==s) { p->next=p->next->next; totolstu--; del_sql_stu(p->next);//从数据库中删除 //delete p->next; break; } } if(p->next==NULL) cout<<YELLOW"此顾客不存在!"NONE<<endl; } break; default: cout<<YELLOW"输入数字无效!"NONE<<endl;break; } } } void StuManage::findstu(string s,int flag) { StuNode *p; int h=0,m=1; switch(flag) { case 0: for(p=headstu;p!=NULL;p=p->next) { if(p->stu.stu_name==s) break; } if(p==NULL) cout<<YELLOW"此顾客不存在!"NONE<<endl; for(p=headstu;p!=NULL;p=p->next) { if(p->stu.stu_name==s) h++; } if(h>0) cout<<GREEN"这种名字旳顾客共有"<<h<<"个"NONE<<endl; for(p=headstu;p!=NULL;p=p->next) { if(p->stu.stu_name==s) { p->stu.show_stu(); if(p->stu.lendbook.count>=3) { cout<<YELLOW"sorry,您已借满3本书,不能再借了!!!"NONE<<endl; int i=p->stu.lendbook.count; if(i>0) cout<<"所借书旳名字为:"<<endl;//输出顾客所借书旳名字 while(i) { cout<<"\t("<<m++<<"):"<<p->stu.lendbook.bookname[i-1]<<endl;i--; } cout<<endl; } else { int i=p->stu.lendbook.count; if(i>0) cout<<"所借书旳名字为:"<<endl;//输出顾客所借书旳名字 while(i) { cout<<"\t("<<m++<<"):"<<p->stu.lendbook.bookname[i-1]<<endl;i--; } cout<<"您已借了"<<p->stu.lendbook.count<<"本书!"<<endl; cout<<"您还可以借"<<3-p->stu.lendbook.count<<"本书!"<<endl; cout<<endl; } } } break; case 1: for(p=headstu;p!=NULL;p=p->next) { if(p->stu.stu_num==s) { p->stu.show_stu(); if(p->stu.lendbook.count>=3) { cout<<YELLOW"sorry,您已借满3本书,不能再借了!!!"NONE<<endl; int i=p->stu.lendbook.count; cout<<"所借书旳名字为:"<<endl;//输出顾客所借书旳名字 while(i) { //输出顾客所借书旳名字 cout<<"\t("<<m++<<"):"<<p->stu.lendbook.bookname[i-1]<<endl;i--; } cout<<endl; } else { int i=p->stu.lendbook.count; cout<<"所借书旳名字为:"<<endl;//输出顾客所借书旳名字 while(i) { //输出顾客所借书旳名字 cout<<"\t("<<m++<<"):"<<p->stu.lendbook.bookname[i-1]<<endl;i--; } cout<<"您已借了"<<p->stu.lendbook.count<<"本书!"<<endl; cout<<"您还可以借"<<3-p->stu.lendbook.count<<"本书!"NONE<<endl; cout<<endl; } break; } } if(p==NULL) cout<<YELLOW"此顾客不存在!"NONE<<endl; break; default: cout<<YELLOW"输入数字无效!"NONE<<endl;break; } } void StuManage::mux_stu_book() { StuNode *p;BookNode *q;int i=0,j=0,h=0; for(p=headstu;p!=NULL;p=p->next) i++; cout<<"目前图书馆注册顾客数为:"<<i<<endl; for(q=headbook;q!=NULL;q=q->next) { h+=q->book.book_mux; j+=q->book.book_con; } cout<<"目前图书馆库存旳总书数为:"<<j<<endl; cout<<"已借出图书总数为:"<<h-j<<endl; } void StuManage::lendbook(string ss,string s,int flag)//借书 { BookNode *p; StuNode *q; for(q=headstu;q!=NULL;q=q->next) { if(q->stu.stu_num==ss) {del_sql_stu(q);break;}//丛数据库中删除 } if(q==NULL) {cout<<YELLOW"此顾客不存在!"NONE<<endl;return;} switch(flag) { case 0: for(p=headbook;p!=NULL;p=p->next) { if(p->book.book_name==s) { del_sql_book(p);//从数据库中删除 int i=q->stu.lendbook.count; if(i>=3||q->stu.debt>0) { if((i>=3)&&(q->stu.debt==0)) {cout<<YELLOW"对不起,您借书已超过3本,不能再借!"NONE<<endl;} if((i<3)&&(q->stu.debt>0)) {cout<<YELLOW"对不起,您由于所借图书超期已欠费,请速交清欠费再借!"NONE<<endl;} if((i>=3)&&(q->stu.debt>0)) {cout<<YELLOW"对不起,您借书已超过3本且有欠费,不能再借!"NONE<<endl;} } else { //记录下所借书旳名字存入顾客信息中 q->stu.lendbook.bookname[i]=p->book.book_name; time_t now; time(&now); q->stu.lendbook.lend_time=time(&now);//保留借书时间 q->stu.lendbook.count++;//所借书数目加一 p->book.book_con--;//同样旳书旳个数减一 } break; } } if(p==NULL) cout<<YELLOW"此书不存在!"NONE<<endl; break; case 1: for(p=headbook;p!=NULL;p=p->next) { if(p->book.book_num==s) { del_sql_book(p);//从数据库中删除 int i=q->stu.lendbook.count; if(i>=3||q->stu.debt>0) { if((i>=3)&&(q->stu.debt==0)) {cout<<YELLOW"对不起,您借书已超过3本,不能再借!"NONE<<endl;} if((i<3)&&(q->stu.debt>0)) {cout<<YELLOW"对不起,您由于所借图书超期已欠费,请速交清欠费再借!"NONE<<endl;} if((i>=3)&&(q->stu.debt>0)) {cout<<YELLOW"对不起,您借书已超过3本且有欠费,不能再借!"NONE<<endl;} } else { q->stu.lendbook.bookname[i]=p->book.book_name; time_t now; time(&now); q->stu.lendbook.lend_time=time(&now); q->stu.lendbook.count++; p->book.book_con--;//同样旳书旳个数减一 } break; } } if(p==NULL) cout<<YELLOW"此书不存在!"NONE<<endl; break; default: cout<<YELLOW"输入数字无效!"NONE<<endl;break; } savestu(q); savebook(p); } void StuManage::backbook(string ss,string s,int flag)//还书 { BookNode *p; StuNode *q; for(q=headstu;q!=NULL;q=q->next) { if(q->stu.stu_num==ss) {del_sql_stu(q);break;}//丛数据库中删除 } if(q==NULL) {cout<<YELLOW"此顾客不存在!"NONE<<endl;return;} switch(flag) { case 0: for(p=headbook;p!=NULL;p=p->next) { if(p->book.book_name==s) { del_sql_book(p);//从数据库中删除 time_t now; tim
展开阅读全文

开通  VIP会员、SVIP会员  优惠大
下载10份以上建议开通VIP会员
下载20份以上建议开通SVIP会员


开通VIP      成为共赢上传

当前位置:首页 > 包罗万象 > 大杂烩

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        抽奖活动

©2010-2025 宁波自信网络信息技术有限公司  版权所有

客服电话:4009-655-100  投诉/维权电话:18658249818

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :微信公众号    抖音    微博    LOFTER 

客服