带你学C带你飞教程中S1E41单链表程序的问题
void getInput(struct Book *book){
printf("请输入书名:");
scanf("%s",book->title);
printf("请输入作者:");
scanf("%s",book->author);
}
就上面这一小段 ,VC++2010上老是报错说Book 后面接void是不合法的,我懵了,小甲鱼大哥和各位大佬帮帮忙看看这个是什么问题, 就这1段不报错才怪;还有代码请上全,没有请写全。 ba21 发表于 2019-3-17 14:11
就这1段不报错才怪;还有代码请上全,没有请写全。
#include<stdio.h>
#include<stdlib.h>
struct Book
{
char title;
char author;
struct Book *next;
}
void getInput(struct Book *book)
{
printf("请输入书名:");
scanf("%s",book->title);
printf("请输入作者:");
scanf("%s",book->author);
}
void addBook(struct Book **library)
{
struct Book *book,*temp;
book=(struct Book *)malloc(sizeof(struct Book));
if(book==NULL)
{
printf("内存分配失败了\n");
exit(1);
}
getInput(book);
if(*library!=NULL)
{
temp=*library;
*library=book;
book->next=temp;
}
else
{
*library=book;
book->next=NULL;
}
}
void printlibrary(struct Book *library)
{
struct Book *book;
int count=1;
book=library;
while(book!=NULL)
{
printf("Book%d:",count);
printf("书名:%s",book->title);
printf("作者:%s",book->author);
book=book->next;
count++;
}
}
void releaselibrary(struct Book *library)
{
while(library!=NULL);
{
free(library);
}
}
int main(void)
{
struct Book *library=NULL;
int ch;
while(1)
{
printf("请问是否需要录入书籍信息(Y/N):");
do
{
ch=getchar();
}while(ch!='Y'&&ch!='N');
if(ch=='Y')
{
addBook(&library);
}
else
{
break;
}
}
printf("请问是否需要打印图书信息(Y/N):");
do
{
ch=getchar();
}while(ch!='Y'&&ch!='N');
if(ch=='Y')
{
printlibrary(library);
}
releaselibrary(library);
return 0;
}
您好,这是完整代码,老是报错,谢谢回答 求大佬 回复啊,。。。 本帖最后由 jackz007 于 2019-3-17 21:07 编辑
struct Book
{
char title ;
char author ;
struct Book * next ;
} ; // 修改点,这里添加了一个 ;
void getInput(struct Book * book)
{
printf("请输入书名:") ;
scanf("%s",book->title);
printf("请输入作者:") ;
scanf("%s",book->author) ;
fflush(stdin) ; // 添加本行,清空键盘缓冲区,避免 scanf() 留下的回车符影响到后续 getchar() 函数的输入结果
}
修改过的程序在 TDM GCC 5.1.0 环境下使用 g++ 顺利编译通过,楼主可以试试。
页:
[1]