C语言:学生成绩管理系统(含源代码)

一.功能

二.源代码

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX_NUM 100
typedef struct
{
    char no[30];
    char name[10];
    char sex[10];
    char phone[20];
    float cyuyan;
    float computer;
    float datastruct;
} *student, student1;

typedef struct
{
    student stu[MAX_NUM];
    int number;
} *studentDB;

void read(studentDB temp)
{
    FILE *infile;
    infile = fopen("./数据.txt", "r");
    if (!infile)
    {
        printf("文件打开失败!");
        exit(0);
    }
    while (!feof(infile))
    {
        temp->stu[temp->number] = malloc(sizeof(student1));
        fscanf(infile, "%s %s %s %s %f %f %f", temp->stu[temp->number]->no, temp->stu[temp->number]->name, temp->stu[temp->number]->sex, temp->stu[temp->number]->phone, &(temp->stu[temp->number]->cyuyan), &(temp->stu[temp->number]->computer), &(temp->stu[temp->number]->datastruct));
        temp->number++;
    }
    fclose(infile);
}

void write(studentDB temp)
{
    FILE *outfile;
    outfile = fopen("./数据.txt", "w");
    if (!outfile)
    {
        printf("文件打开失败!");
        exit(1);
    }
    if (temp && temp->number > 0)
    {
        int i;
        for (i = 0; i < temp->number; i++)
        {
            if (i == temp->number - 1)
            {
                fprintf(outfile, "%s %s %s %s %.2f %.2f %.2f", temp->stu[i]->no, temp->stu[i]->name, temp->stu[i]->sex, temp->stu[i]->phone, temp->stu[i]->cyuyan, temp->stu[i]->computer, temp->stu[i]->datastruct);
            }
            else
            {
                fprintf(outfile, "%s %s %s %s %.2f %.2f %.2f\n", temp->stu[i]->no, temp->stu[i]->name, temp->stu[i]->sex, temp->stu[i]->phone, temp->stu[i]->cyuyan, temp->stu[i]->computer, temp->stu[i]->datastruct);
            }
        }
    }
    fclose(outfile);
    printf("保存成功");
    read(temp);
}

void display(studentDB temp)
{
    int i;
    printf("|   学号   |姓名|性别|  手机号  |c语言|英语|高等数学|\n");
    for (i = 0; i < temp->number; i++)
    {
        printf("%s %s %s %s %.2f %.2f %.2f\n", temp->stu[i]->no, temp->stu[i]->name, temp->stu[i]->sex, temp->stu[i]->phone, temp->stu[i]->cyuyan, temp->stu[i]->computer, temp->stu[i]->datastruct);
    }
}

void menu()
{
    printf("\n\n\t****************************简单学生信息管理系统*****************************\n");
    printf("\t*                              1.显示学生信息                             *|\n");
    printf("\t*                              2.增加学生信息                             *|\n");
    printf("\t*                              3.删除学生信息                             *|\n");
    printf("\t*                              4.修改学生信息                             *|\n");
    printf("\t*                              5.查询学生信息                             *|\n");
    printf("\t*                              6.排序学生成绩                             *|\n");
    printf("\t*                              7.计算学生平均成绩                         *|\n");
    printf("\t*                              8.保存学生信息                             *|\n");
    printf("\t*                              9.统计全部课程及格人数                     *|\n");
    printf("\t*                              10.输出总成绩最高的学生信息                *|\n");
    printf("\t*                              0.退出系统                                 *|\n");
    printf("\t***************************************************************************\n");
    printf("请选择你的操作并将序号输入:");
}

int countDigits(long long n)
{
    int count = 0;
    while (n > 0)
    {
        n /= 10;
        count++;
    }
    return count;
}

void insert(studentDB temp)
{
    char no[30];
    printf("请输入要添加学生的学号:");
    scanf("%s", no);
    int n;
    long long num;
    sscanf(no, "%lld", &num);
    n = countDigits(num);
    if (n != 11)
    {
        printf("输入的学号位数有误,请重新输入!");
        return;
    }
    else
    {
        student1 stu;
        FILE *outfile;
        outfile = fopen("./数据.txt", "a");
        if (!outfile)
        {
            printf("文件打开失败!");
            exit(0);
        }
        strcpy(stu.no, no);
        printf("请输入姓名:");
        scanf("%s", stu.name);
        printf("请输入性别:");
        scanf("%s", stu.sex);
        printf("请输入手机号:");
        scanf("%s", stu.phone);
        printf("请输入c语言成绩(带小数点):");
        scanf("%f", &stu.cyuyan);
        printf("请输入英语成绩(带小数点):");
        scanf("%f", &stu.computer);
        printf("请输入高等数学成绩(带小数点):");
        scanf("%f", &stu.datastruct);
        n = fprintf(outfile, "\n%s %s %s %s %f %f %f", stu.no, stu.name, stu.sex, stu.phone, stu.cyuyan, stu.computer, stu.datastruct);
        printf("%s %s %s %s %.2f %.2f %.2f", stu.no, stu.name, stu.sex, stu.phone, stu.cyuyan, stu.computer, stu.datastruct);
        printf("学生信息已成功插入!信息长度:%d\n", n);
        fclose(outfile);
        read(temp);
        return;
    }
}

void delete(studentDB temp)
{
    printf("请输入要删除的学生信息学号:");
    char no[15];
    int i, k;
    scanf("%s", no);
    printf("%s", no);
    for (i = 0; i < temp->number; i++)
    {
        if (strcmp(temp->stu[i]->no, no) == 0)
        {
            for (k = i; k < temp->number; k++)
            {
                temp->stu[k] = temp->stu[k + 1];
            }
            free(temp->stu[temp->number]);
            temp->number--;
            printf("学生信息已成功删除!\n");
            return;
        }
    }
    printf("学生学号输入错误!");
    return;
}

void modify(studentDB temp)
{
    printf("请输入要修改的学生信息学号:");
    char no[15];
    int i, flag = 0;
    long num;
    scanf("%s", no);
    sscanf(no, "%ld", &num);
    for (i = 0; i < temp->number; i++)
    {
        if (strcmp(no, temp->stu[i]->no) == 0)
        {
            printf("\n学号:%s  姓名:%s  性别:%s  手机号:%s  c语言:%.2f  英语:%.2f  高等数学:%.2f\n\n\n", temp->stu[i]->no, temp->stu[i]->name, temp->stu[i]->sex, temp->stu[i]->phone, temp->stu[i]->cyuyan, temp->stu[i]->computer, temp->stu[i]->datastruct);
            printf("|1.学号|2.姓名|3.性别|4.手机号|5.c语言成绩|6.英语成绩|7.高等数学成绩|8.不改动并返回菜单|9.依次修改全部数据\n\n\n请输入要改动的数据项:");
            scanf("%d", &flag);
            switch (flag)
            {
            case 1:
                printf("请输入要修改的学号:");
                scanf("%s", temp->stu[i]->no);
                break;
            case 2:
                printf("请输入姓名:");
                scanf("%s", temp->stu[i]->name);
                break;
            case 3:
                printf("请输入性别:");
                scanf("%s", temp->stu[i]->sex);
                break;
            case 4:
                printf("请输入手机号:");
                scanf("%s", temp->stu[i]->phone);
                break;
            case 5:
                printf("请输入c语言成绩(带小数点):");
                scanf("%f", &(temp->stu[i]->cyuyan));
                break;
            case 6:
                printf("请输入英语成绩(带小数点):");
                scanf("%f", &(temp->stu[i]->computer));
                break;
            case 7:
                printf("请输入高等数学成绩(带小数点):");
                scanf("%f", &(temp->stu[i]->datastruct));
                break;
            case 8:
                return;
            case 9:
                printf("请输入姓名:");
                scanf("%s", temp->stu[i]->name);
                printf("请输入性别:");
                scanf("%s", temp->stu[i]->sex);
                printf("请输入手机号:");
                scanf("%s", temp->stu[i]->phone);
                printf("请输入c语言成绩(带小数点):");
                scanf("%f", &(temp->stu[i]->cyuyan));
                printf("请输入英语成绩(带小数点):");
                scanf("%f", &(temp->stu[i]->computer));
                printf("请输入高等数学成绩(带小数点):");
                scanf("%f", &(temp->stu[i]->datastruct));
                break;
            default:
                printf("请重新选择!");
                break;
            }
            return;
        }
    }
}

void search(studentDB temp)
{
    printf("请输入要查询的学生信息学号:");
    char no[30];
    int i, n;
    long long num;
    scanf("%s", no);
    sscanf(no, "%lld", &num);
    n = countDigits(num);
    if (n != 11)
    {
        printf("输入的学号位数有误,请重新输入!");
        return;
    }
    else
    {
        for (i = 0; i < temp->number; i++)
        {
            if (strcmp(temp->stu[i]->no, no) == 0)
            {
                printf("\n学号:%s  姓名:%s  性别:%s  手机号:%s  c语言:%.2f  英语:%.2f  高等数学:%.2f\n\n\n", temp->stu[i]->no, temp->stu[i]->name, temp->stu[i]->sex, temp->stu[i]->phone, temp->stu[i]->cyuyan, temp->stu[i]->computer, temp->stu[i]->datastruct);
                return;
            }
        }
        printf("学生学号输入错误!");
        return;
    }
}

void sort(studentDB temp)
{
    int i, j, n;
    float t;
    for (i = 0; i < temp->number; i++)
    {
        for (j = i + 1; j < temp->number; j++)
        {
            if ((temp->stu[i]->cyuyan + temp->stu[i]->computer + temp->stu[i]->datastruct) < (temp->stu[j]->cyuyan + temp->stu[j]->computer + temp->stu[j]->datastruct))
            {
                student1 *tempstu = temp->stu[i];
                temp->stu[i] = temp->stu[j];
                temp->stu[j] = tempstu;
            }
        }
    }
    printf("已按成绩排序完成!\n");
}

void average(studentDB temp)
{
    int i;
    float ctotal = 0, comtotal = 0, dstotal = 0;
    for (i = 0; i < temp->number; i++)
    {
        ctotal += temp->stu[i]->cyuyan;
        comtotal += temp->stu[i]->computer;
        dstotal += temp->stu[i]->datastruct;
    }
    printf("C语言平均成绩:%.2f 英语平均成绩:%.2f 高等数学平均成绩:%.2f\n", ctotal / temp->number, comtotal / temp->number, dstotal / temp->number);
}

void passing(studentDB temp)
{
    int i, cpass = 0, compass = 0, dpass = 0;
    for (i = 0; i < temp->number; i++)
    {
        if (temp->stu[i]->cyuyan >= 60)
        {
            cpass++;
        }
        if (temp->stu[i]->computer >= 60)
        {
            compass++;
        }
        if (temp->stu[i]->datastruct >= 60)
        {
            dpass++;
        }
    }
    printf("C语言及格人数:%d 英语及格人数:%d 高等数学及格人数:%d\n", cpass, compass, dpass);
}

void max(studentDB temp)
{
    int i, index = 0;
    float maxScore = 0;
    for (i = 0; i < temp->number; i++)
    {
        float totalScore = temp->stu[i]->cyuyan + temp->stu[i]->computer + temp->stu[i]->datastruct;
        if (totalScore > maxScore)
        {
            maxScore = totalScore;
            index = i;
        }
    }
    printf("学号:%s  姓名:%s  性别:%s  手机号:%s  c语言:%.2f  英语:%.2f  高等数学:%.2f 总成绩:%.2f\n", temp->stu[index]->no, temp->stu[index]->name, temp->stu[index]->sex, temp->stu[index]->phone, temp->stu[index]->cyuyan, temp->stu[index]->computer, temp->stu[index]->datastruct, maxScore);
}

int main()
{
    int select;
    studentDB stu = malloc(sizeof(studentDB));
    stu->number = 0;
    read(stu);
    do
    {
        menu();
        scanf("%d", &select);
        switch (select)
        {
        case 1:
            display(stu);
            break;
        case 2:
            insert(stu);
            break;
        case 3:
            delete (stu);
            break;
        case 4:
            modify(stu);
            break;
        case 5:
            search(stu);
            break;
        case 6:
            sort(stu);
            break;
        case 7:
            average(stu);
            break;
        case 8:
            write(stu);
            break;
        case 9:
            passing(stu);
            break;
        case 10:
            max(stu);
            break;
        case 0:
            exit(1);
        }
    } while (1);
    return 0;
}

三.注意事项

(1)事先准备: 数据.txt 文件(可以含有学生信息,可以空白,但是必须有)

(2)学号为11

(3)该代码不含有C99或者C11

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/674395.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

基于springboot实现人事管理系统项目【项目源码+论文说明】计算机毕业设计

基于springboot实现人事管理系统演示 摘要 传统信息的管理大部分依赖于管理人员的手工登记与管理&#xff0c;然而&#xff0c;随着近些年信息技术的迅猛发展&#xff0c;让许多比较老套的信息管理模式进行了更新迭代&#xff0c;问卷信息因为其管理内容繁杂&#xff0c;管理数…

AWS EC2服务器开启root密码,SSH登录

1) EC2 Instance Connect连接&#xff0c;更改root密码 sudo passwd root 2&#xff09;接着切换到切换到 root 身份&#xff0c;编辑 SSH 配置文件 $ sudo -i$ vi /etc/ssh/sshd_configPasswordAuthentication no&#xff0c;把 no 改成 yes #PermitRootLogin prohibit-passw…

TPM 是什么?如何查看电脑的 TPM?

TPM 是什么&#xff1f; 首先我们来了解一下 TPM 是什么&#xff0c;TPM 由可信计算组织&#xff08;Trusted Computing Group&#xff0c;TCG&#xff09;开发&#xff0c;为了在提高计算机系统的安全性。随着网络安全威胁的不断增加&#xff0c;TPM 技术逐渐成为确保系统安全…

创新指南|提高人才回报率的重要举措和指标

员工是组织最大的投资&#xff0c;也是最深层的价值源泉。人才系统必须同时强调生产力和价值创造。让合适的人才担任合适的职位&#xff0c;并为员工提供成功所需的支持和机会&#xff0c;这是实现回报的关键。本文将介绍组织可以采取的五项行动&#xff0c;以最大化企业的人才…

批量剪辑软件 故事影视解说

故事影视解说1 1.根据导入的文案&#xff08;也可直接导入音视频文件或者字幕文件&#xff0c;软件会自动提取文案或整理字幕文件内容&#xff09;进行配音并结合背景素材&#xff08;支持图与视频&#xff0c;支持可选择是否混剪&#xff09;合并&#xff08;可选择性是否加对…

QT 如何在 QListWidget 的选项中插入自定义组件

有时我们需要 QListWidget 完成更复杂的操作&#xff0c;而不仅限于添加文本或者图标&#xff0c;那么就会使用到 setItemWidget 函数&#xff0c;但是这也会伴生一个问题&#xff0c;插入自定义组件后&#xff0c;QListWidget 对选项点击事件的获取会收到阻塞&#xff0c;因…

力扣SQL50 员工奖金 连表查询 isnull(xx)

Problem: 577. 员工奖金 字段 is nullisnull(字段) Code select e.name,b.bonus from Employee e left join Bonus b on e.empId b.empId # where isnull(b.bonus) or b.bonus < 1000; where b.bonus is null or b.bonus < 1000;

高中数学:解三角形相关公式总结及用法总结

一、正弦定理 二、余弦定理 三、三角形面积公式 由正弦定理&#xff0c;可以推出三角形的面积公式&#xff1a; S*ab*sinC S*ac*sinB S*bc*sinA 四、使用方法总结 五、练习 例题1 解析 对条件等式进行变形&#xff0c;结合余弦定理&#xff0c;求出∠A的度数&#xff0c;从而…

目标检测算法综述

1 研究背景 1.1 概述 目标检测是计算机视觉的重要分支&#xff0c;主要任务是在给定的图片中精确找到物体所在位置&#xff0c;并标注出物体的类别&#xff0c;即包含了目标定位与目标分类两部分。在计算机视觉领域中的目标跟踪、图像分割、事件检测、场景理解等的任务都以目标…

Go 编程风格指南 - 最佳实践

Go 编程风格指南 - 最佳实践 原文&#xff1a;https://google.github.io/styleguide/go 概述 | 风格指南 | 风格决策 | 最佳实践 注意&#xff1a; 本文是 Google Go 风格 系列文档的一部分。本文档是 规范性(normative) 但不是强制规范(canonical)&#xff0c;并且从属于Goo…

通用代码生成器应用场景五:任意需求应用急就章

通用代码生成器应用场景五&#xff1a;任意需求应用急就章 在中国文化中&#xff0c;如果您在任何的政府&#xff0c;商业或者私人事务上需要表明身份。您需要一枚自己的私章。如果在必须的场合&#xff0c;您没有此私章。如果您知道如何刻写图章&#xff0c;可以临时使用普通的…

淘宝扭蛋机小程序:为市场带来了新的发展机遇

随着互联网的快速发展&#xff0c;大众的消费方式也逐渐向线上转移&#xff0c;越来越多的消费者喜欢上了电商购物&#xff0c;电商时代已然到来。 在互联网时代背景下&#xff0c;扭蛋机市场也得到了改变&#xff0c;线上淘宝扭蛋机小程序以电商的模式进入了大众的生活中&…

正邦科技(day3)

出厂测试 设备校准 这个需要注意的是校准电流、电压、电感的时候有时候负感器会装反&#xff0c;mcu会坏&#xff0c;需要flash一下清空内存

微信小程序分销商城源码系统 区域代理+收银台+兑换中心 功能强大 附带完整的安装代码包以及搭建教程

系统概述 微信小程序分销商城源码系统是一款基于微信小程序平台开发的电商系统&#xff0c;旨在为商家提供全方位的电商解决方案。该系统采用先进的技术架构&#xff0c;支持多平台、多终端访问&#xff0c;能够满足不同商家的业务需求。系统拥有简洁明了的用户界面和丰富的功…

半导体光子电学期末笔记1: 电磁光学基本理论

Chapter 2: 电磁光学基本理论 电磁光学理论概述 真空中麦克斯韦方程组[p9] 在自由空间中&#xff0c;麦克斯韦方程组可以写成如下形式&#xff1a; { ∇ H ϵ 0 ∂ E ∂ t (1) ∇ E − μ 0 ∂ H ∂ t (2) ∇ ⋅ E 0 (3) ∇ ⋅ H 0 (4) \begin{cases} \nabla \times \…

GPT-4o:人工智能技术的新里程碑

在人工智能领域&#xff0c;技术的不断演进为我们带来了许多惊喜。最近&#xff0c;GPT-4o横空出世&#xff0c;成为了人工智能技术的新里程碑。在这篇博客中&#xff0c;我们将对GPT-4o进行评价&#xff0c;并进行版本间的对比分析&#xff0c;探讨其技术能力以及个人整体感受…

SSMP整合案例第八步 前端页面的分页功能完善与维护和实现条件查询

分页 页面中有分页展示 查看组件 想用什么直接编辑 vue里面的常量数据 可以修改模型数据达到修改展示效果的能力 先在前端进入的时候加载分页数据 //钩子函数&#xff0c;VUE对象初始化完成后自动执行 created() {//加载全部数据// this.getAll();//加载分页数据this.getPag…

香橙派OrangePI AiPro测评 【运行qt,编解码,xfreeRDP】

实物 为AI而生 打开盒子 配置 扛把子的 作为业界首款基于昇腾深度研发的AI开发板&#xff0c;Orange Pi AIpro无论在外观上、性能上还是技术服务支持上都非常优秀。采用昇腾AI技术路线&#xff0c;集成图形处理器&#xff0c;拥有8GB/16GB LPDDR4X&#xff0c;可以外接32…

数据库系列之MySQL数据库Varchar类型尾部空值问题

背景&#xff1a;研发人员在执行SQL语句“select xx from tb where c1’aaa ’”查询时&#xff0c;发现并不能只查询出’aaa ’这样的字符串&#xff0c;而是把所有’aaa’这样的查出来。首先不管开发人员在插入数据的时候有没有进行去掉首尾字符串的处理&#xff0c;在MySQL …

基于RNN和Transformer的词级语言建模 代码分析 _generate_square_subsequent_mask

基于RNN和Transformer的词级语言建模 代码分析 _generate_square_subsequent_mask flyfish Word-level Language Modeling using RNN and Transformer word_language_model PyTorch 提供的 word_language_model 示例展示了如何使用循环神经网络RNN(GRU或LSTM)和 Transforme…