c语言求大家帮忙改错
鸠魔智 2011-03-14 02:18:00 struct list{
char num[20];
char name[40];
char auther[40];
char publish[40];
double price;
}
void search_allinformation(struct list b[]);
void check_boolinformation(struct list b[]);
void add_bookinformation(struct list b[]);
void delete_bookinformation(struct list b[]);
void borrow_book(struct list b[]);
switch(choice1)
{ case 1: search_allinformation(b);
break;
case 2:check_boolinformation(b);
break;
case 3:add_bookinformation(b);
break;
case 4:delete_bookinformation(b);
break;
case 5: borrow_book(b);
break;
case 0:break;
}