鱼C论坛

 找回密码
 立即注册
查看: 974|回复: 11

[已解决]求助,小甲鱼的课上程序运行不了,求解

[复制链接]
发表于 2023-7-19 20:46:43 | 显示全部楼层 |阅读模式
50鱼币
最佳答案
2023-7-19 20:46:44
认真学习的jerry 发表于 2023-7-19 20:53
#include
#include
struct Book{

你的代码有几个问题,包括语法错误和逻辑错误。下面是一些修改后的代码:
#include<stdio.h>
#include<stdlib.h>

struct Book{
    char title[100];
    char author[40];
    struct Book *next;
};

void getInput(struct Book *book);
void addBook(struct Book **library);
void bookPrint(struct Book *library);
void releaseLibrary(struct Book **library);

void getInput(struct Book *book)
{
    printf("请输入书名:\n");
    scanf("%s",book->title);
    printf("请输入作者:\n");
    scanf("%s",book->author);
}

void addBook(struct Book **library)
{
    struct Book *book,*temp;
    book = (struct Book *)malloc(sizeof(struct Book));

    if(book == NULL)
    {
        printf("分配内存空间失败!");
        exit(1);
    }

    getInput(book);

    if(*library == NULL)
    {       
        *library = book;
        book->next = NULL;
    }
    else
    {
        temp = *library;
        *library = book;
        book->next = temp;
    }
}

void bookPrint(struct Book *library)
{
    struct Book *book;
    book = library;
    int count = 1;
    while(book != NULL)
    {
        printf("第%d本书\n",count);
        printf("书名: %s\n",book->title);
        printf("作者: %s\n",book->author);
        book = book->next;
        count++;
    }
}

void releaseLibrary(struct Book **library)
{       
    struct Book *temp;
    while(*library != NULL)
    {
        temp = *library;
        *library = (*library)->next;
        free(temp);
    }
}

int main()
{
    struct Book *library = NULL;
    char ch;
    addBook(&library);
    while(1)
    {
        printf("是否添加书籍?:(Y/N)");
        scanf(" %c", &ch);
        if(ch == 'Y' || ch == 'y')
            addBook(&library);
        else if(ch == 'N' || ch == 'n')
            break;

        printf("是否打印?:(Y/N)");
        scanf(" %c", &ch);
        if(ch == 'Y' || ch == 'y')
            bookPrint(library);
        else if(ch == 'N' || ch == 'n')
            break;
    }
    releaseLibrary(&library);
    return 0;
}

修复了的问题包括:

1.  addBook 函数的结束括号丢失。

2.  if(book = NULL) 修改为 if(book == NULL) , = 是赋值操作, == 是比较操作。

3.  bookPrint 和 printf 函数的参数不正确。

4.  releaseLibrary 函数的参数应该是双指针,因为你要修改指针本身。

5.  getchar() 函数通常会从缓冲区中读取一个字符,如果缓冲区中没有字符,它将等待用户输入。为了避免读取上一次残留的换行符,使用 scanf(" %c", &ch); 是个好方法。

6. 主函数的循环逻辑错误,你的 while 和 do-while 混合使用,可能造成一些逻辑问题,所以我对这部分进行了修正。
屏幕截图 2023-07-19 204448.png

最佳答案

查看完整内容

你的代码有几个问题,包括语法错误和逻辑错误。下面是一些修改后的代码: 修复了的问题包括: 1. addBook 函数的结束括号丢失。 2. if(book = NULL) 修改为 if(book == NULL) , = 是赋值操作, == 是比较操作。 3. bookPrint 和 printf 函数的参数不正确。 4. releaseLibrary 函数的参数应该是双指针,因为你要修改指针本身。 5. getchar() 函数通常会从缓冲区中读取一个字符,如果缓冲区中没有字符 ...
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-7-19 20:46:44 | 显示全部楼层    本楼为最佳答案   
认真学习的jerry 发表于 2023-7-19 20:53
#include
#include
struct Book{

你的代码有几个问题,包括语法错误和逻辑错误。下面是一些修改后的代码:
#include<stdio.h>
#include<stdlib.h>

struct Book{
    char title[100];
    char author[40];
    struct Book *next;
};

void getInput(struct Book *book);
void addBook(struct Book **library);
void bookPrint(struct Book *library);
void releaseLibrary(struct Book **library);

void getInput(struct Book *book)
{
    printf("请输入书名:\n");
    scanf("%s",book->title);
    printf("请输入作者:\n");
    scanf("%s",book->author);
}

void addBook(struct Book **library)
{
    struct Book *book,*temp;
    book = (struct Book *)malloc(sizeof(struct Book));

    if(book == NULL)
    {
        printf("分配内存空间失败!");
        exit(1);
    }

    getInput(book);

    if(*library == NULL)
    {       
        *library = book;
        book->next = NULL;
    }
    else
    {
        temp = *library;
        *library = book;
        book->next = temp;
    }
}

void bookPrint(struct Book *library)
{
    struct Book *book;
    book = library;
    int count = 1;
    while(book != NULL)
    {
        printf("第%d本书\n",count);
        printf("书名: %s\n",book->title);
        printf("作者: %s\n",book->author);
        book = book->next;
        count++;
    }
}

void releaseLibrary(struct Book **library)
{       
    struct Book *temp;
    while(*library != NULL)
    {
        temp = *library;
        *library = (*library)->next;
        free(temp);
    }
}

int main()
{
    struct Book *library = NULL;
    char ch;
    addBook(&library);
    while(1)
    {
        printf("是否添加书籍?:(Y/N)");
        scanf(" %c", &ch);
        if(ch == 'Y' || ch == 'y')
            addBook(&library);
        else if(ch == 'N' || ch == 'n')
            break;

        printf("是否打印?:(Y/N)");
        scanf(" %c", &ch);
        if(ch == 'Y' || ch == 'y')
            bookPrint(library);
        else if(ch == 'N' || ch == 'n')
            break;
    }
    releaseLibrary(&library);
    return 0;
}

修复了的问题包括:

1.  addBook 函数的结束括号丢失。

2.  if(book = NULL) 修改为 if(book == NULL) , = 是赋值操作, == 是比较操作。

3.  bookPrint 和 printf 函数的参数不正确。

4.  releaseLibrary 函数的参数应该是双指针,因为你要修改指针本身。

5.  getchar() 函数通常会从缓冲区中读取一个字符,如果缓冲区中没有字符,它将等待用户输入。为了避免读取上一次残留的换行符,使用 scanf(" %c", &ch); 是个好方法。

6. 主函数的循环逻辑错误,你的 while 和 do-while 混合使用,可能造成一些逻辑问题,所以我对这部分进行了修正。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-7-19 20:47:03 | 显示全部楼层
本帖最后由 Mike_python小 于 2023-7-19 20:54 编辑

完整代码发一下,检查一下是否缺少}或者{

void bookprint
的上一行再加上一个}



球一个最佳答案谢谢啦!这对我非常重要!

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-7-19 20:49:11 | 显示全部楼层
Snipaste_2023-07-19_20-48-52.png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2023-7-19 20:53:44 | 显示全部楼层
Mike_python小 发表于 2023-7-19 20:47
完整代码发一下,检查一下是否缺少}或者{
球一个最佳答案谢谢啦!这对我非常重要!{: ...

#include<stdio.h>
#include<stdlib.h>
struct Book{
                char title[100];
                char author[40];
                struct Book *next;
               
        };
        void getInput(struct Book *book);
        void addBook(struct Book **library);
        void bookPrint(struct Book *library);
        void releaseLibrary(struct Book **library);
void getInput(struct Book *book)
{
        printf("请输入书名:\n");
        scanf("%s",book->title);
        printf("请输入作者:\n");
        scanf("%s",book->author);
}
void addBook(struct Book **library)
        {
                struct Book *book,*temp;
                book = (struct Book *)malloc(sizeof(struct Book));
                if(book = NULL)
                {
                printf("分配内存空间失败!");
               
                exit(1);}
       
       
        getInput(book);
        if(*library == NULL)
        {       
                *library = book;
                book->next = NULL;
               
        }
       
                else
                {
                        temp = *library;
                        *library = book;
                        book->next = temp;
                }
void bookPrint(struct Book *library)
       
                {
                struct Book *book;
                book = library;
                int count = 1;
                while(book != NULL)
                {
                printf("几本%d\n",count);
                printf("书名\n",book->title);
                printf("请输入作者:\n",book->author);
                book = book->next;
                count++;}
}
void releaseLibrary(struct Book *library)
{        struct Book *temp;
        while(library != NULL)
        {
                temp = library;
                *library = (*library)->next;
                free(temp);
}
}


       

       
        int main()
        {
                struct Book *library = NULL;
                int ch;
                addBook(&library);
                        while(1)
        {
                printf("是否添加书籍?:(Y/N)");
                ch = getchar();
                while(ch !='Y' && ch != 'N');
                do{
                        if(ch == 'Y')
                  addBook(&library);
                  }
                printf("是否打印?:(Y/N)");
                ch = getchar();
                while(ch !='Y' && ch != 'N');
                do{
                        if(ch == 'Y')
                  bookPrint(library);
                  }
       
         }
                return 0;
        }
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2023-7-19 20:54:44 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-7-19 20:55:44 | 显示全部楼层
认真学习的jerry 发表于 2023-7-19 20:53
#include
#include
struct Book{
#include<stdio.h>
#include<stdlib.h>
struct Book{
                char title[100];
                char author[40];
                struct Book *next;
               
        };
        void getInput(struct Book *book);
        void addBook(struct Book **library);
        void bookPrint(struct Book *library);
        void releaseLibrary(struct Book **library);
void getInput(struct Book *book)
{
        printf("请输入书名:\n");
        scanf("%s",book->title);
        printf("请输入作者:\n");
        scanf("%s",book->author);
}
void addBook(struct Book **library)
        {
                struct Book *book,*temp;
                book = (struct Book *)malloc(sizeof(struct Book));
                if(book = NULL)
                {
                printf("分配内存空间失败!");
               
                exit(1);}
       
       
        getInput(book);
        if(*library == NULL)
        {       
                *library = book;
                book->next = NULL;
               
        }
       
                else
                {
                        temp = *library;
                        *library = book;
                        book->next = temp;
                }
}
void bookPrint(struct Book *library)
       
                {
                struct Book *book;
                book = library;
                int count = 1;
                while(book != NULL)
                {
                printf("几本%d\n",count);
                printf("书名\n",book->title);
                printf("请输入作者:\n",book->author);
                book = book->next;
                count++;}
}
void releaseLibrary(struct Book *library)
{        struct Book *temp;
        while(library != NULL)
        {
                temp = library;
                *library = (*library)->next;
                free(temp);
}
}


       

       
        int main()
        {
                struct Book *library = NULL;
                int ch;
                addBook(&library);
                        while(1)
        {
                printf("是否添加书籍?:(Y/N)");
                ch = getchar();
                while(ch !='Y' && ch != 'N');
                do{
                        if(ch == 'Y')
                  addBook(&library);
                  }
                printf("是否打印?:(Y/N)");
                ch = getchar();
                while(ch !='Y' && ch != 'N');
                do{
                        if(ch == 'Y')
                  bookPrint(library);
                  }
       
         }
                return 0;
        }

如果代码对你有帮助,记得设置最佳答案!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-7-19 20:57:14 | 显示全部楼层

你的 addBook 函数确实缺了右括号
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-7-19 20:57:22 | 显示全部楼层
Mike_python小 发表于 2023-7-19 20:55
如果代码对你有帮助,记得设置最佳答案!

好的又来一个
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-7-19 20:59:29 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-7-19 20:59:55 | 显示全部楼层
这段代码存在一些语法错误和逻辑问题,我对代码进行了修复和改进,如下所示:

#include<stdio.h>
#include<stdlib.h>

struct Book {
    char title[100];
    char author[40];
    struct Book* next;
};

void getInput(struct Book* book) {
    printf("请输入书名:\n");
    scanf("%s", book->title);
    printf("请输入作者:\n");
    scanf("%s", book->author);
}

void addBook(struct Book** library) {
    struct Book* book = (struct Book*)malloc(sizeof(struct Book));
    if (book == NULL) {
        printf("分配内存空间失败!\n");
        exit(1);
    }

    getInput(book);
    book->next = *library;
    *library = book;
}

void bookPrint(struct Book* library) {
    struct Book* book = library;
    int count = 1;
    while (book != NULL) {
        printf("第%d本书:\n", count);
        printf("书名:%s\n", book->title);
        printf("作者:%s\n", book->author);
        book = book->next;
        count++;
    }
}

void releaseLibrary(struct Book* library) {
    struct Book* current = library;
    struct Book* next;
    while (current != NULL) {
        next = current->next;
        free(current);
        current = next;
    }
}

int main() {
    struct Book* library = NULL;
    char ch;

    do {
        printf("是否添加书籍? (Y/N): ");
        scanf(" %c", &ch);
        if (ch == 'Y' || ch == 'y') {
            addBook(&library);
        }
    } while (ch == 'Y' || ch == 'y');

    do {
        printf("是否打印? (Y/N): ");
        scanf(" %c", &ch);
        if (ch == 'Y' || ch == 'y') {
            bookPrint(library);
        }
    } while (ch == 'Y' || ch == 'y');

    releaseLibrary(library);

    return 0;
}

修复和改进的问题包括:

1. 添加了缺失的右大括号 `}`。
2. 修复了 `addBook` 函数中的条件判断错误,将 `if(book = NULL)` 改为 `if(book == NULL)`。
3. 将向结构体链表添加新书的逻辑进行了修正,使其始终将新书插入到链表的头部。
4. 在 `bookPrint` 函数中修复了 `printf` 函数调用的参数问题,增加了遍历计数器 `count`。
5. `releaseLibrary` 函数中,修复了释放内存时的指针操作错误。
6. 在主函数中,修改了读取用户输入字符的 `scanf` 调用,去掉了末尾的分号,增加了忽略开头空白字符的空格。

经过修复和改进后的代码更加符合 C 语言的语法和逻辑规范,可以正常编译和运行。希望对你有所帮助!如果还有其他问题,请随时提问。
球一个最佳答案谢谢啦!这对我非常重要!\n\n
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-7-19 22:20:05 | 显示全部楼层
匠心巨制,求评分:https://fishc.com.cn/thread-231007-1-1.html
马上就能申请精华了,助把力吧
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-12-24 08:17

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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