鱼C论坛

 找回密码
 立即注册
查看: 1175|回复: 4

[已解决]课上代码运行只能运行一半

[复制链接]
发表于 2021-5-10 10:40:17 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 孤世星辰 于 2021-5-10 10:42 编辑
#include <stdio.h>
#include <stdlib.h>

struct Book
{
        char title[128];
        char author[40];
        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);
        library=library->next;
        }
}

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;

}
捕获.PNG
最佳答案
2021-5-10 13:02:22
if(book=NULL)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-5-10 13:02:22 | 显示全部楼层    本楼为最佳答案   
if(book=NULL)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-5-10 14:47:27 | 显示全部楼层

谢谢,一般这种错误怎么找到呢,他也没有提示,我百度也是说越界了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-5-10 16:14:19 | 显示全部楼层
孤世星辰 发表于 2021-5-10 14:47
谢谢,一般这种错误怎么找到呢,他也没有提示,我百度也是说越界了
$ gcc -g -Wall -o main main.c
main.c: In function ‘addBook’:
main.c:22:12: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
   22 |         if(book=NULL)
      |            ^~~~
main.c: At top level:
main.c:64:1: warning: return type defaults to ‘int’ [-Wimplicit-int]
   64 | main(void)
      | ^~~~
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

 楼主| 发表于 2021-5-11 14:44:10 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-9-21 10:34

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表