图书管理系统c语言建立

 

#include <stdio.h>

#include <string.h>

#include <stdlib.h>

#include <stdbool.h>

#include <ctype.h>

 

#define MAXTITL 40

#define MAXAUTL 40

#define MAXBKSS 21 // 多出来的一位为判断是否为第一次打开文件

#define MAXBKS 20 // 最大图书数量

char *s_gets(char *st, int n);

struct book

{ // 建立book模板

    char title[MAXTITL];

    char author[MAXAUTL];

    float value;

    int delete_flag; // 标记0为未删除 1为已删除

}; // 添加删除标记成员

int main(void)

{

    int count = 0;

    int add = 0;

    char bookname_deleta[MAXTITL];

    char choice;

    char space = ' ';

    char input[MAXTITL];

    FILE *fr;

    FILE *fw;

    fr = fopen("book.dat", "a+b");

    if (fr == NULL)

    {

        printf("Failed to open file!\n");

        exit(EXIT_FAILURE);

    }

    struct book arr[MAXBKSS];

    rewind(fr);

    while (count < MAXBKS && fread(&arr[count], sizeof(struct book), 1, fr) == 1)

    {

        if (count == 0)

        {

            printf("书籍信息如下:\n");

            printf("书名 作者 价格\n");

        }

        if (arr[count].delete_flag == 0)

        {

            printf("%-16s%-16s%.2f %d\n", arr[count].title, arr[count].author, arr[count].value, arr[count].delete_flag);

            count++;

        }

    }

    fclose(fr);

    if (count == MAXBKS)

    {

        printf("书籍已经放满了.");

        exit(2);

    }

    if ((arr[MAXBKSS - 1].delete_flag) != 1)

    {

        for (int i = 0; i < MAXBKSS; i++)

        {

            arr[i].delete_flag = 1;

        }

    } // 判断文件是否为首次打开

    struct book *ptr;

    ptr = &arr[0];

    while (1)

    {

        printf("请问需要删除文件吗?(请输入y或者n):");

        int result = scanf("%c", &choice);

        if (result == 1)

        {

            if (choice == 'y' || choice == 'Y')

            {

                printf("请输入想要删除的书籍:");

                scanf("%s", bookname_deleta);

                while (getchar() != '\n')

                    continue;

                for (int i = 0; i < count; i++)

                {

                    if (strcmp(arr[i].title, bookname_deleta) == 0)

                    {

                        arr[i].delete_flag = 1;

                    }

                }

            }

            else if (choice == 'n')

            {

                break;

            }

            else

            {

                printf("请重新输入,请输入y或者n(y代需要,n代表不需要):");

                result = scanf(" %c", &choice);

                while (getchar() != '\n')

                    continue;

            }

        }

    }

    while (getchar() != '\n')

        continue;

    printf("输入两个回车退出输入\n");

    printf("请输入书名:");

    count = 0;

    int books = 0;

    while (count < MAXBKS && s_gets((ptr + count)->title, MAXTITL) != NULL && (ptr + count)->delete_flag == 1)

    {

        if ((ptr + count)->title[0] != '\0')

        {

            printf("现在请输入作者名:");

            s_gets((ptr + count)->author, MAXAUTL);

            printf("现在请输入价格:");

            scanf("%f", &(ptr + count)->value);

            (ptr + count)->delete_flag = 0;

            while (getchar() != '\n')

                continue;

        }

        else if ((ptr + count)->title[0] == '\0')

        {

            break;

        }

        printf("请输入书名:\n");

        count++;

    }

    for (int i = 0; i < MAXBKS; i++)

    {

        if ((ptr + i)->delete_flag == 0)

        {

            printf("%d", (ptr + i)->delete_flag);

            books++;

        }

    }

    if (books == 0)

    {

        printf("文件中没有书");

        exit(1);

    }

    else if (books != 0)

    {

        for (int i = 0; i < books; i++)

        {

            if (arr[i].delete_flag == 0)

                printf("%-10s的作者是%-10s,价格为%.2f\n", arr[i].title, arr[i].author, arr[i].value);

        }

    }

    if ((fw = fopen("book.dat", "a+b")) == NULL)

    {

        printf("文件打开失败.");

        exit(EXIT_FAILURE);

    }

    if (fwrite(arr, sizeof(struct book), books, fw) != books)

    {

        printf("文件写入失败!\n");

        fclose(fw);

        exit(EXIT_FAILURE);

    }

    printf("%d", books);

    fclose(fw);

    printf("程序结束.");

    return 0;

}

char *s_gets(char *st, int n)

{

    char *ret_val; // 存储 fgets 函数的返回值

    char *find; // 存储查找到的换行符的位置

    ret_val = fgets(st, n, stdin); // 从标准输入读取字符串

    if (ret_val) // 如果读取成功

    {

        find = strchr(st, '\n'); // 查找换行符

        if (find) // 如果找到了换行符

            *find = '\0'; // 在此处放置一个空字符, 表示字符串的结束

        else // 如果没有找到换行符

            while (getchar() != '\n') // 丢弃多余的输入字符

                continue;

    }

    return ret_val; // 返回字符串的起始地址

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值