#include <stdio.h> #include <string.h> #include <stdlib.h> #define max 1000 int num=0; struct book //书 { char name[20]; //名 double price; //价格 int lent=0; //是否已借 int id=NULL; //图书编号 struct book *next; }; struct user //用户结构 { char name[30]; //名字 int account ; //账号 int password; //密码 int borrow; //借书的id }; void inwrong(void) { char s[50]; gets(s); system("cls"); printf("\t\t\t输入错误!!\n"); system("PAUSE");system("cls"); } int lookupb(book *l,char name[20]) //书名查找,(有)返回id值(无)返回 NULL { int i=0; book *p=l->next ; for(i=0;i<num;i++) { if(strcmp(p->name ,name )==0) { return l->id ; break; } p=p->next ; } return NULL; } void out(book *l) //输出图书 { int i; book *p=l->next ; printf("name price"); for(i=1;i<=num;i++) { puts(p->name ); printf("%lf\n",p->price ); if(i%12==0) { printf("%d/%d",i,num/12); //i/总页数 } p=p->next ; } } void add() //管理员 注册新图书 { book *l,*s,*r; int i,n,k; if(num==0) { l=(book *)malloc(sizeof(book)); l->next =NULL; } r=l; printf("需要添加几本\n"); scanf("%d",&n); getchar(); //消化回车键 for(i=0;i<n;i++) { s=(book *)malloc(sizeof(book)); printf("请输入书名\n"); gets(s->name ); k=lookupb(l,s->name); if(k!=NULL) { printf("重复命名,请重新输入\n"); add(); } printf("%s",s->name ); printf("请输入价格\n"); scanf("%lf",&s->price ); getchar(); //消化回车键 strcpy(l->name,s->name); s->id =1; r->next =s; r=s; num++; printf("添加成功!"); system("pause"); } r->next=NULL; out(l); } int main() { add(); add(); printf("%d\n",sizeof(book)); }
时间: 2024-04-27 19:19:40 浏览: 61
C 语言中声明字符串数组
这段代码是在做一个图书管理系统,定义了两个结构体:书和用户,以及一些函数,如查找图书、输出图书、添加图书等。在主函数中调用了两次添加图书的函数。其中,书的结构体包含了书名、价格、是否已借和图书编号等信息。用户的结构体包含了名字、账号、密码和借书的id等信息。这段代码还存在一些问题,如结构体定义中的一些数据类型不合适,查找图书函数中返回的id值不正确等。
阅读全文