鱼C论坛

 找回密码
 立即注册
查看: 3097|回复: 8

[技术交流] 学生成绩管理系统

[复制链接]
发表于 2016-6-11 22:19:46 | 显示全部楼层 |阅读模式

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

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

x
花了两天时间终于把系统完善啦~~~至今写过的最长代码
感谢小甲鱼老师的<C语言程序设计>:057第十章 结构体与共用体05(新版).mp4
努力学习! 热爱鱼C^_^~~~如有BUG,还望大牛指正!
#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
#include<windows.h>                // Sleep函数

#define LEN sizeof(struct student)                // student结构的大小

void Commands_menu(void);
struct student *Create(struct student *head);
struct student *Insert(struct student *head, struct student *stu_2);
struct student *Del(struct student *head);
void Print(struct student *head);
void Quit(void);
void SlowDisplay(char *p);

struct student
{
        int num;
        float score;
        struct student *next;
};

int n=0;                // 链表节点数 
int choose_number;        // 命令选择指向默认
int is_num;                // 检查输入是否为数字
char proof;                // 判断 Y/N 

int main()
{

        SlowDisplay("\n\t学 生 成 绩 管 理 系 统\n");

        Commands_menu();

        return 0;
}

//*******************************命令菜单*******************************
void Commands_menu(void)
{
        struct student *head=NULL, stu_2;

        while (1)
        {
                puts("\n************************************************************************");
                printf("****\t1 : 创建数据\t< 友情提醒: 执行'创建数据'命令会覆盖旧数据库! >\n");
                printf("****\t2 : 插入数据\n");
                printf("****\t3 : 删除数据\n");
                printf("****\t4 : 打印数据\n");
                printf("****\t0 : 退出!\n");
                puts("************************************************************************");

                SlowDisplay("\n请输入执行命令 : ");

                choose_number = 9;
                switch(scanf("%d", &choose_number), choose_number)
                {
                case 1:
                        // 一次过滤所有非法字符输入
                        while(getchar() != '\n')
                        {
                                ;
                        }
                        SlowDisplay("\n确定创建新数据库, 覆盖旧数据库? < Y / N > : ");
            proof = getchar();
            if(proof == 'y' || proof == 'Y')
            {
                SlowDisplay("\n数据库重建中...\t< 学号、成绩输入 '0' 则退出! >\n");
                                head = Create(head);
            }
            else if(proof == 'n' || proof == 'N')
                        {
                                SlowDisplay("\n取消创建! 继续!\n");
            }
                        else
                        {
                                SlowDisplay("\n创建失败! 输入非法!\n");
                        }
                        Print(head);
                        break;

                case 2:
                        head = Insert(head, &stu_2);
                        Print(head);
                        break;

                case 3:
                        head = Del(head);
                        Print(head);
                        break;

                case 4:
                        Print(head);
                        break;

                case 0:
                        Quit();
                        break;

                default:
                        SlowDisplay("\n输入非法!\n\n");
                }

                // 一次过滤所有非法字符输入
                while(getchar() != '\n')
                {
                        ;
                }
        }
}

//*******************************创建数据*******************************

struct student *Create(struct student *head)
{
        struct student *p1, *p2;

        n = 0;
        head = NULL;
        p1 = p2 = (struct student *)malloc(LEN);

        printf("\n\t录入第 %d 位学生学号 : ", n+1);
        // 检查非法输入
        while(!(is_num = scanf("%d", &p1->num)))
        {
                printf("\n\t请重新输入学生学号(纯数字) : ");
                while(getchar() != '\n')
                {
                        ;
                }
        }
        if(p1->num == 0)
        {
                SlowDisplay("\n结束创建!\n");
                return head;
        }
        printf("\n\t录入第 %d 位学生成绩 : ", n+1);
        // 检查非法输入
        while(!(is_num = scanf("%f", &p1->score)) || p1->score < 0 || p1->score >100)
        {
                printf("\n\t请重新输入学生成绩(0~100的数字) : ");
                while(getchar() != '\n')
                {
                        ;
                }
        }
        
        while (p1->num)
        {
                n++;
                if (1 == n)
                {
                        head = p1;
                }
                else
                {
                        p2->next = p1;
                }

                p2 = p1;

                p1 = (struct student *)malloc(LEN);

                getchar();
                printf("\n\t请继续录入第 %d 位学生学号 : ", n+1);
                // 检查非法输入
                while(!(is_num = scanf("%d", &p1->num)))
                {
                        printf("\n\t请重新输入学生学号(纯数字) : ");
                        while(getchar() != '\n')
                        {
                                ;
                        }
                }
                if(p1->num == 0)
                {
                        SlowDisplay("\n结束创建!\n");
                
                        p2->next = NULL;

                        return head;
                }
                printf("\n\t请继续录入第 %d 位学生成绩 : ", n+1);
                // 检查非法输入
                while(!(is_num = scanf("%f", &p1->score)) || p1->score < 0 || p1->score >100)
                {
                        printf("\n\t请重新输入学生成绩(0~100的数字) : ");
                        while(getchar() != '\n')
                        {
                                ;
                        }
                }
        }

        p2->next = NULL;

        SlowDisplay("\n创建成功!\n");

        return head;
}

//*******************************插入数据*******************************
struct student *Insert(struct student *head, struct student *stu_2)
{
        struct student *p1, *p2;

        stu_2 = (struct student *)malloc(LEN);

        printf("\n请录入要插入学生学号(输入'0'取消) : ");
        // 检查非法输入
        while(!(is_num = scanf("%d", &stu_2->num)))
        {
                printf("\n\t请重新输入学生学号(纯数字) : ");
                while(getchar() != '\n')
                {
                        ;
                }
        }
        if(stu_2->num == 0)
        {
                SlowDisplay("\n取消插入!\n");
                return head;
        }
        printf("\n请录入要插入学生成绩 : ");
        // 检查非法输入
        while(!(is_num = scanf("%f", &stu_2->score)) || stu_2->score < 0 || stu_2->score > 100)
        {
                printf("\n\t请重新输入学生成绩(0~100的数字) : ");
                while(getchar() != '\n')
                {
                        ;
                }
        }

        p1 = head;

        if(head == NULL)
        {
                head = stu_2;
                stu_2->next = NULL;
        }
        else
        {
                while (p1->next != NULL && stu_2->num > p1->num)
                {
                        p2 = p1;
                        p1 = p1->next;
                }

                if (stu_2->num <= p1->num)
                {
                        if (head == p1)
                        {
                                head = stu_2;
                        }
                        else
                        {
                                p2->next = stu_2;
                        }                        
                        stu_2->next = p1;
                }
                else
                {
                        p1->next = stu_2;
                        stu_2->next = NULL;
                }
        }

        n++;

        SlowDisplay("\n插入成功!");
        printf("\n插入学号 : %d\n", stu_2->num);

        return head;
}

//*******************************删除数据*******************************
struct student *Del(struct student *head)
{
        struct student *p1, *p2;
        int num;

        getchar();
        printf("\n请输入您想删除的学生学号(输入'0'取消) : ");
        // 检查非法输入
        while(!(is_num = scanf("%d", &num)))
        {
                printf("\n\t请重新输入学生学号(纯数字) : ");
                while(getchar() != '\n')
                {
                        ;
                }
        }
        if(num == 0)
        {
                SlowDisplay("\n取消删除!\n");
                return head;
        }

        p1 = head;
        if(head == NULL)
        {
                SlowDisplay("\n删除失败!");
                printf("\n数据库为空!\n");
        }
        else
        {
                while (p1->next != NULL && num != p1->num)
                {
                        p2 = p1;
                        p1 = p1->next;
                }
                if (num == p1->num)
                {
                        if (p1 == head)
                        {
                                head = p1->next;
                        }
                        else
                        {
                                p2->next = p1->next;
                        }

                        SlowDisplay("\n删除成功!");
                        printf("\n删除学号 : %d\n", num);
                        n--;
                }
                else
                {
                        SlowDisplay("\n删除失败!");
                        printf("\n无匹配学号 : %d\n", num);
                }
        }

        return head;

}

//*******************************打印数据*******************************
void Print(struct student *head)
{
        struct student *p;
        SlowDisplay("\n数据库打印中...");
        puts("\n************************************************************************");
        printf("\n****\t数据库中共计有 %d 条记录!\n", n);

        p = head;
        while (p)
        {
                printf("\n\t学号 : %d , 成绩 : %5.2f", p->num, p->score);
                p = p->next;
        }
        putchar('\n');
}

//*******************************退出*******************************
void Quit(void)
{
        // 一次过滤所有非法字符输入
        while(getchar() != '\n')
        {
                ;
        }
        SlowDisplay("\n确定退出? < Y / N > : ");
        proof = getchar();
        if(proof == 'y' || proof == 'Y')
        {
                SlowDisplay("\n数据库保存中...\n");
                // 执行数据库保存...
                SlowDisplay("\n * * * *\n");
                SlowDisplay("\n * * * *\n");
                SlowDisplay("\n * * * *\n");
                SlowDisplay("\n数据库已保存, 系统退出!\t");
                exit(0);
        }
        else if(proof == 'n' || proof == 'N')
        {
                SlowDisplay("\n取消退出! 继续!\n");
        }
        else
        {
                SlowDisplay("\n输入非法! 继续!\n");
        }
}

//*******************************慢显*******************************
void SlowDisplay(char *p)
{
    while(1)
    {
        if(*p!=0)
            printf("%c",*p++);
        else 
            break;
        Sleep(50);
    }
}

评分

参与人数 1荣誉 +5 鱼币 +10 贡献 +5 收起 理由
~风介~ + 5 + 10 + 5 感谢楼主无私奉献!

查看全部评分

本帖被以下淘专辑推荐:

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

使用道具 举报

发表于 2016-6-12 20:29:45 | 显示全部楼层
写得挺好的,代码清晰,赞一个!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2016-6-12 21:02:53 | 显示全部楼层
~风介~ 发表于 2016-6-12 20:29
写得挺好的,代码清晰,赞一个!

谢谢鼓励,向着大牛努力!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2016-6-12 21:07:27 | 显示全部楼层
~风介~ 发表于 2016-6-12 20:29
写得挺好的,代码清晰,赞一个!

谢谢鼓励,向着大牛努力!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2016-6-12 21:08:04 | 显示全部楼层
~风介~ 发表于 2016-6-12 20:29
写得挺好的,代码清晰,赞一个!

谢谢鼓励,向着大牛努力!!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2016-6-16 12:38:14 | 显示全部楼层
看看,学习下
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2016-6-29 18:58:02 | 显示全部楼层
代码简洁明了,谢谢你的分享
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2016-11-15 23:20:49 | 显示全部楼层
代码很酷酷~~!~
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2016-12-30 17:26:14 | 显示全部楼层
哥们 厉害拉
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-22 02:30

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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