求助将一段C语言代码中的struct改写到book.h头文件里
如下这段程序,是一个简单的图书管理系统。要求把程序里的struct部分写到一个book.h的头文件里,然后再在.c文件中调用book.h就可以了。程序太长了传不上来,如下...
如下这段程序,是一个简单的图书管理系统。要求把程序里的struct部分写到一个book.h的头文件里,然后再在.c文件中调用book.h就可以了。程序太长了传不上来,如下是一部分,希望懂得人帮我改写一下,谢谢了。
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
struct Libiary{
char title[20];
char author[20];
char publisher[20];
char published[20];
char price[20];
struct Libiary *next;
};
typedef struct Libiary LIB ;
LIB *head=NULL;
void showmenu();
void Appenditem();
void Finditem1();
void Finditem2();
void Saveandfree();
void Open();
void main()
{
char ch;
Open();
while(1)
{
showmenu();
scanf(" %c",&ch);
switch(ch)
{
case '1':Appenditem();
break;
case '2':Finditem1();
break;
case '3':Finditem2();
break;
case '0':Saveandfree();
exit(0);
break;
default:
printf("Do not Have this option!");
break;
}
}
}
如果有需要完整程序的,发邮件给我,我发给你。
还有希望可以把修好的book.h文件和修改好的.c文件发到我邮箱就好了。
sweetcandytt@hotmail.com
再次谢谢! 展开
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
struct Libiary{
char title[20];
char author[20];
char publisher[20];
char published[20];
char price[20];
struct Libiary *next;
};
typedef struct Libiary LIB ;
LIB *head=NULL;
void showmenu();
void Appenditem();
void Finditem1();
void Finditem2();
void Saveandfree();
void Open();
void main()
{
char ch;
Open();
while(1)
{
showmenu();
scanf(" %c",&ch);
switch(ch)
{
case '1':Appenditem();
break;
case '2':Finditem1();
break;
case '3':Finditem2();
break;
case '0':Saveandfree();
exit(0);
break;
default:
printf("Do not Have this option!");
break;
}
}
}
如果有需要完整程序的,发邮件给我,我发给你。
还有希望可以把修好的book.h文件和修改好的.c文件发到我邮箱就好了。
sweetcandytt@hotmail.com
再次谢谢! 展开
展开全部
就把这段写入者迅袜 book.h
struct Libiary{
char title[20];
char author[20];
char publisher[20];
char published[20];
char price[20];
struct Libiary *next;
};
typedef struct Libiary LIB ;
程序昌握里加入 #include "首激book.h":
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include "book.h"
LIB *head=NULL;
void showmenu();
void Appenditem();
void Finditem1();
void Finditem2();
void Saveandfree();
void Open();
void main()
{
...
}
struct Libiary{
char title[20];
char author[20];
char publisher[20];
char published[20];
char price[20];
struct Libiary *next;
};
typedef struct Libiary LIB ;
程序昌握里加入 #include "首激book.h":
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include "book.h"
LIB *head=NULL;
void showmenu();
void Appenditem();
void Finditem1();
void Finditem2();
void Saveandfree();
void Open();
void main()
{
...
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询