#include<stdio.h>
#include<stdlib.h>
#include<string.h>
struct book{
int num;
char bname[50];
char wname[20];
char press[50];
char sort[50];
int time;
float price;
struct book *next;
};
struct book *creatbook(); //创建链表
struct book *addbook(struct book *head); //添加图书
int yanzheng(struct book *head,int m); //验证新添加的图书编码是否已存在
void deletebook(struct book *head); //删除图书
void fprint(struct book *head); //将链表写入文件
struct book *load(); //从文件中读取信息并建成链表
void print_book(struct book *head); //将链表信息输出
void chaxun(struct book *head); //查询图书信息
void num_chaxun(struct book *head); //按图书编号查询图书
void wname_chaxun(struct book *head); //按作者名查询图书
void sort_chaxun(struct book *head); //按类别查询图书
void time_chaxun(struct book *head); //按出版时间查询图书
void bname_chaxun(struct book *head); //按图书名查询图书
void xiugai(struct book *head); //修改图书信息
void paixu(struct book *head); //对图书进行排序
void num_paixu(struct book *head); //按图书编号排序
void time_paixu(struct book *head); //按图书出版时间排序
void price_paixu(struct book *head); //按图书价格排序
void bname_paixu(struct book *head); //按图书名排序
void wname_paixu(struct book *head); //按作者名排序
int main()
{
int choice,n,x,y=1,c,c1=1;
char a,d,b[10],b1[10]="1";
struct book *head=NULL;
while(y){
system("cls");
printf("\n\n\n\n\n");
printf(" ----------------------------------------------------------------------\n");
printf(" --- ||-------------||-------图书信息管理系统--------||-----------||---\n");
printf(" --- ||-------------||------- 登陆界面 --------||-----------||---\n");
printf(" ----------------------------------------------------------------------\n");
printf("\n");
printf(" ============1-进入系统===========\n");
printf(" ============0-退出系统===========\n");
printf(" ----------------------------------------------------------------------\n");
printf(" 请输入选择:");
scanf("%d",&n);
printf("\n");
getchar();
switch(n){
case 0:
y=0;
break;
case 1:
printf(" 请输入您的用户名(输入1即可):");
gets(b);
printf("\n");
printf(" 请输入您的密码(输入1即可):");
scanf("%d",&c);
printf("\n");
if(strcmp(b,b1)!=0||c!=c1){
printf(" 验证失败,请重新输入!\n");
scanf("%c",&d);
getchar();
system("cls");
}
else{
printf(" 验证通过!请按Enter键进入!\n");
scanf("%c",&d);
getchar();
x=1;
while(x){
system("cls");
system ("color 1F");
printf(" ----------------------------------------------------------------------\n\n");
printf(" --- ||-------------||-------图书信息管理系统--------||-----------||---\n\n");
printf(" --- ||-------------||-----------操作界面------------||-----------||---\n\n");
printf(" ----------------------------------------------------------------------\n\n");
printf(" ----------------------------------------------\n");
printf(" ----||-----------系统菜单选项-----------||----\n");
printf(" ----------------------------------------------\n");
printf(" -|| 1-添加图书 删除图书-2 ||-\n\n");
printf(" -|| 3-图书列表 图书排序-4 ||-\n\n");
printf(" -|| 5-查询图书 修改图书-6 ||-\n\n");
printf(" -|| 7-录入数据 退出系统-0 ||-\n\n");
printf(" ----------------------------------------------\n");
printf(" ----------------------------------------------\n\n");
printf("请输入所选择的序号:");
scanf("%d",&choice);
getchar();
system("cls");
switch(choice)
{免费网站源码资源分享
case 0:
x=0;break;
case 1:
head=load();
if(head==NULL){
printf("文件为空,请先录入数据!\n");
getchar();
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论