#include <stdio.h> #include<string.h> #include<stdlib.h> struct student { char name[10]; char number[10]; char class1[5]; char class2[5]; char class3[5]; float average; }; int X;int num=0; struct student Stu[1000]; int addstu() { while(1) { printf("请输入学号,名字,成绩1,成绩2,成绩3\n"); scanf("%s%s%s%s%s",Stu[num].number,Stu[num].name,Stu[num].class1,Stu[num].class2,Stu[num].class3); double grade1=atoi(Stu[num].class1); double grade2=atoi(Stu[num].class2); double grade3=atoi(Stu[num].class3); Stu[num].average=(grade1+grade2+grade3)/3; num++; printf("是否添加?"); getchar(); if (getchar()=='n') { break; } } return num; } void stu_display(int i) { printf("%8s,%s,%s,%s,%s",Stu[i].number,Stu[i].name,Stu[i].class1,Stu[i].class2,Stu[i].class3); } int stu_findnumber(char number[]) { int i; for(i=0;i<num;i++) { if(strcmp(Stu[i].number, number)==0) { return i; } } return -1; } void stu_find() { while(1) { char number[20]; int index; printf("请输入学号"); scanf("%s",number); getchar(); index=stu_findnumber(number); if(index==-1){ printf("学生不存在"); } else{ printf("学号,姓名,课程1成绩,课程2成绩,课程3成绩分别为"); stu_display(index); } break; } } void Stu_sort() { int i,j; struct student x; for(i=0;i<num-1;i++) { for(j=1;j<num-i;j++) { if(Stu[j-1].average<Stu[j].average) { x=Stu[j-1]; Stu[j-1]=Stu[j]; Stu[j]=x; } } } printf("排序后的结果学号,姓名,课程1成绩,课程2成绩,课程3成绩分别为\n"); for(int q=0;q<num;q++) { stu_display(q); } } int main() { while(1) { printf(" 学生成绩管理系统 \n"); printf(" 1、成绩录入\n"); printf(" 2、成绩查询\n"); printf(" 3、成绩统计\n"); printf(" 4、退出系统\n"); printf("请选择1-4\n "); scanf("%d",&X); getchar(); switch(X) { case 1: addstu(); break; case 2: stu_find(); break; case 3: Stu_sort(); break; case 4: exit(0); break; } } }此程序中各函数之间的调用关系

时间: 2024-04-28 15:26:15 浏览: 83
该程序中各函数之间的调用关系如下: 1. main函数调用addstu、stu_find、Stu_sort函数; 2. addstu函数内部调用stu_display函数; 3. stu_find函数内部调用stu_findnumber和stu_display函数; 4. Stu_sort函数内部调用stu_display函数。
相关问题

修改程序:#include <stdio.h> #include <stdlib.h> #include <string.h> #define Element 6 struct Student { char name[8]; char id[12]; int sex; int age; float total_gpa; } student[Element]; int main() { int i; FILE *fp; if ((fp = fopen("stu.dat", "rb")) == NULL) { printf("Can't open file!\n"); exit(0); } for(i=0;i<Element;i++) { fread(&student[i],sizeof(struct student_type),6,fp); printf("%-10s% %4s %4d %4d %-15f\n",student[i].id, student[i].name, student[i].sex, student[i].age, student[i].total_gpa) } fclose(fp); return 0; }

修改程序如下: ```c #include <stdio.h> #include <stdlib.h> #include <string.h> #define Element 6 struct Student { char name[8]; char id[12]; int sex; int age; float total_gpa; } student[Element]; int main() { int i; FILE *fp; if ((fp = fopen("stu.dat", "rb")) == NULL) { printf("Can't open file!\n"); exit(0); } for(i = 0; i < Element; i++) { fread(&student[i], sizeof(struct Student), 1, fp); printf("%-10s %-8s %4d %4d %-15f\n", student[i].id, student[i].name, student[i].sex, student[i].age, student[i].total_gpa); } fclose(fp); return 0; } ``` 修改点如下: 1. 结构体名称应该与定义的一致,即 `student` 而不是 `student_type`; 2. 在 `fread` 中,`sizeof(struct student_type)` 应该改为 `sizeof(struct Student)`,且第三个参数应该为 1 而不是 6; 3. 在 `printf` 中,`% %4s` 应该改为 `%-8s`,即输出 `name` 时保证对齐; 4. `printf` 格式化字符串中,`%-10s` 后应该有一个空格,即输出 `id` 时保证对齐。

#include<stdio.h> #include<stdlib.h> #include<string.h> #include<windows.h> struct stu { int id; char name[10]; float grade[11]; float sum; float average; float gpa; struct stu* next; };按照这个结构体来续写C语言代码。要求将学生信息保存在硬盘文件中,通过制定文件路径和文件名称来导入学生信息;按照学号对所有学生信息进行升序、降序排列,并输出到屏幕显示或输出到文件

好的,以下是续写的代码: ```c #include <stdio.h> #include <stdlib.h> #include <string.h> #include <windows.h> struct stu { int id; char name[10]; float grade[11]; float sum; float average; float gpa; struct stu* next; }; void saveToFile(struct stu* head, char* fileName) { FILE* fp = fopen(fileName, "wb"); if (fp == NULL) { printf("Failed to open file!\n"); return; } struct stu* p = head; while (p != NULL) { fwrite(p, sizeof(struct stu), 1, fp); p = p->next; } fclose(fp); printf("Successfully saved to file!\n"); } struct stu* readFromFile(char* fileName) { FILE* fp = fopen(fileName, "rb"); if (fp == NULL) { printf("Failed to open file!\n"); return NULL; } struct stu* head = NULL, *p = NULL, *q = NULL; while (!feof(fp)) { p = (struct stu*)malloc(sizeof(struct stu)); if (p == NULL) { printf("Memory allocation failed!\n"); return NULL; } fread(p, sizeof(struct stu), 1, fp); if (p->id == 0) { free(p); break; } p->next = NULL; if (head == NULL) { head = p; } else { q->next = p; } q = p; } fclose(fp); printf("Successfully read from file!\n"); return head; } void printList(struct stu* head) { if (head == NULL) { printf("The list is empty!\n"); return; } printf("ID\tName\tGrade1\tGrade2\tGrade3\tGrade4\tGrade5\tGrade6\tGrade7\tGrade8\tGrade9\tGrade10\tSum\tAverage\tGPA\n"); struct stu* p = head; while (p != NULL) { printf("%d\t%s\t", p->id, p->name); for (int i = 0; i < 10; i++) { printf("%.2f\t", p->grade[i]); } printf("%.2f\t%.2f\t%.2f\n", p->sum, p->average, p->gpa); p = p->next; } } void swap(struct stu* a, struct stu* b) { struct stu temp = *a; *a = *b; *b = temp; } void sortList(struct stu* head, int order) { if (head == NULL) { printf("The list is empty!\n"); return; } int count = 0; struct stu* p = head; while (p != NULL) { count++; p = p->next; } for (int i = 0; i < count - 1; i++) { p = head; for (int j = 0; j < count - i - 1; j++) { if (order == 1) { if (p->id > p->next->id) { swap(p, p->next); } } else { if (p->id < p->next->id) { swap(p, p->next); } } p = p->next; } } printf("Successfully sorted!\n"); } int main() { struct stu* head = NULL; char fileName[100]; int choice, order; while (1) { system("cls"); printf("1. Import student information from file\n"); printf("2. Save student information to file\n"); printf("3. Print student information\n"); printf("4. Sort student information by ID in ascending order\n"); printf("5. Sort student information by ID in descending order\n"); printf("6. Exit\n"); printf("Please enter your choice: "); scanf_s("%d", &choice); switch (choice) { case 1: printf("Please enter the file path and name: "); scanf_s("%s", fileName, 100); head = readFromFile(fileName); Sleep(2000); break; case 2: printf("Please enter the file path and name: "); scanf_s("%s", fileName, 100); saveToFile(head, fileName); Sleep(2000); break; case 3: printList(head); system("pause"); break; case 4: sortList(head, 1); system("pause"); break; case 5: sortList(head, 2); system("pause"); break; case 6: printf("Goodbye!\n"); return 0; default: printf("Invalid choice!\n"); Sleep(1000); break; } } return 0; } ``` 这段代码实现了以下功能: 1. 将学生信息保存到硬盘文件中,并通过指定文件路径和文件名称来导入学生信息。 2. 按照学号对所有学生信息进行升序、降序排列,并输出到屏幕显示或输出到文件。 3. 通过菜单的方式来选择要执行的操作。 希望对你有所帮助!
阅读全文

相关推荐

最新推荐

recommend-type

spring 异步编程样例

spring 异步编程样例
recommend-type

带有 python 3 和 opencv 4.1 的 Docker 映像.zip

带有 python 3.7 和 opencv 4.1.0 的 Docker 映像用法docker run -it jjanzic/docker-python3-opencv python>>> import cv2带有标签的图像包含使用contrib 模块:contrib构建的 docker 镜像可用的docker标签列表opencv-4.1.0(latest分支)contrib-opencv-4.1.0(opencv_contrib分支)opencv-4.0.1contrib-opencv-4.0.1opencv-4.0.0contrib-opencv-4.0.0opencv-3.4.2contrib-opencv-3.4.2opencv-3.4.1contrib-opencv-3.4.1opencv-3.4.0contrib-opencv-3.4.0opencv-3.3.0contrib-opencv-3.3.0opencv-3.2.0contrib-opencv-3.2.0
recommend-type

原生js鼠标滑过文字淡入淡出效果.zip

原生js鼠标滑过文字淡入淡出效果.zip
recommend-type

1-中国各省、市、区、县距离港口和海岸线的距离计算代码+计算结果-社科数据.zip

中国各城市、区、县距离港口和海岸线的距离数据集提供了全国各城市及区、县的坐标信息,以及各个港口和海岸线的坐标信息。通过R语言计算,得出了各城市、区县与港口和海岸线之间的距离。该数据集包含了各港口的经纬度、各城市与港口之间的距离、各区县与港口之间的距离、中国各城市质心与港口的最近距离、中国各城市质心与海岸线的距离、中国各区县质心与港口的最近距离以及中国各区县质心与海岸线的距离等指标。此外,还涉及中国各省距离海岸线的距离数据。港口等级划分参考了《全国沿海港口布局规划》,包括上海港、大连港等45个港口。数据集覆盖了全国31个省及直辖市,是研究地理、经济和规划等领域的宝贵资源。
recommend-type

为 Spring Web 应用提供 OAuth1 (a) 和 OAuth2 功能支持.zip

1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。
recommend-type

火炬连体网络在MNIST的2D嵌入实现示例

资源摘要信息:"Siamese网络是一种特殊的神经网络,主要用于度量学习任务中,例如人脸验证、签名识别或任何需要判断两个输入是否相似的场景。本资源中的实现例子是在MNIST数据集上训练的,MNIST是一个包含了手写数字的大型数据集,广泛用于训练各种图像处理系统。在这个例子中,Siamese网络被用来将手写数字图像嵌入到2D空间中,同时保留它们之间的相似性信息。通过这个过程,数字图像能够被映射到一个欧几里得空间,其中相似的图像在空间上彼此接近,不相似的图像则相对远离。 具体到技术层面,Siamese网络由两个相同的子网络构成,这两个子网络共享权重并且并行处理两个不同的输入。在本例中,这两个子网络可能被设计为卷积神经网络(CNN),因为CNN在图像识别任务中表现出色。网络的输入是成对的手写数字图像,输出是一个相似性分数或者距离度量,表明这两个图像是否属于同一类别。 为了训练Siamese网络,需要定义一个损失函数来指导网络学习如何区分相似与不相似的输入对。常见的损失函数包括对比损失(Contrastive Loss)和三元组损失(Triplet Loss)。对比损失函数关注于同一类别的图像对(正样本对)以及不同类别的图像对(负样本对),鼓励网络减小正样本对的距离同时增加负样本对的距离。 在Lua语言环境中,Siamese网络的实现可以通过Lua的深度学习库,如Torch/LuaTorch,来构建。Torch/LuaTorch是一个强大的科学计算框架,它支持GPU加速,广泛应用于机器学习和深度学习领域。通过这个框架,开发者可以使用Lua语言定义模型结构、配置训练过程、执行前向和反向传播算法等。 资源的文件名称列表中的“siamese_network-master”暗示了一个主分支,它可能包含模型定义、训练脚本、测试脚本等。这个主分支中的代码结构可能包括以下部分: 1. 数据加载器(data_loader): 负责加载MNIST数据集并将图像对输入到网络中。 2. 模型定义(model.lua): 定义Siamese网络的结构,包括两个并行的子网络以及最后的相似性度量层。 3. 训练脚本(train.lua): 包含模型训练的过程,如前向传播、损失计算、反向传播和参数更新。 4. 测试脚本(test.lua): 用于评估训练好的模型在验证集或者测试集上的性能。 5. 配置文件(config.lua): 包含了网络结构和训练过程的超参数设置,如学习率、批量大小等。 Siamese网络在实际应用中可以广泛用于各种需要比较两个输入相似性的场合,例如医学图像分析、安全验证系统等。通过本资源中的示例,开发者可以深入理解Siamese网络的工作原理,并在自己的项目中实现类似的网络结构来解决实际问题。"
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

L2正则化的终极指南:从入门到精通,揭秘机器学习中的性能优化技巧

![L2正则化的终极指南:从入门到精通,揭秘机器学习中的性能优化技巧](https://img-blog.csdnimg.cn/20191008175634343.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl80MTYxMTA0NQ==,size_16,color_FFFFFF,t_70) # 1. L2正则化基础概念 在机器学习和统计建模中,L2正则化是一个广泛应用的技巧,用于改进模型的泛化能力。正则化是解决过拟
recommend-type

如何构建一个符合GB/T19716和ISO/IEC13335标准的信息安全事件管理框架,并确保业务连续性规划的有效性?

构建一个符合GB/T19716和ISO/IEC13335标准的信息安全事件管理框架,需要遵循一系列步骤来确保信息系统的安全性和业务连续性规划的有效性。首先,组织需要明确信息安全事件的定义,理解信息安全事态和信息安全事件的区别,并建立事件分类和分级机制。 参考资源链接:[信息安全事件管理:策略与响应指南](https://wenku.csdn.net/doc/5f6b2umknn?spm=1055.2569.3001.10343) 依照GB/T19716标准,组织应制定信息安全事件管理策略,明确组织内各个层级的角色与职责。此外,需要设置信息安全事件响应组(ISIRT),并为其配备必要的资源、
recommend-type

Angular插件增强Application Insights JavaScript SDK功能

资源摘要信息:"Microsoft Application Insights JavaScript SDK-Angular插件" 知识点详细说明: 1. 插件用途与功能: Microsoft Application Insights JavaScript SDK-Angular插件主要用途在于增强Application Insights的Javascript SDK在Angular应用程序中的功能性。通过使用该插件,开发者可以轻松地在Angular项目中实现对特定事件的监控和数据收集,其中包括: - 跟踪路由器更改:插件能够检测和报告Angular路由的变化事件,有助于开发者理解用户如何与应用程序的导航功能互动。 - 跟踪未捕获的异常:该插件可以捕获并记录所有在Angular应用中未被捕获的异常,从而帮助开发团队快速定位和解决生产环境中的问题。 2. 兼容性问题: 在使用Angular插件时,必须注意其与es3不兼容的限制。es3(ECMAScript 3)是一种较旧的JavaScript标准,已广泛被es5及更新的标准所替代。因此,当开发Angular应用时,需要确保项目使用的是兼容现代JavaScript标准的构建配置。 3. 安装与入门: 要开始使用Application Insights Angular插件,开发者需要遵循几个简单的步骤: - 首先,通过npm(Node.js的包管理器)安装Application Insights Angular插件包。具体命令为:npm install @microsoft/applicationinsights-angularplugin-js。 - 接下来,开发者需要在Angular应用的适当组件或服务中设置Application Insights实例。这一过程涉及到了导入相关的类和方法,并根据Application Insights的官方文档进行配置。 4. 基本用法示例: 文档中提到的“基本用法”部分给出的示例代码展示了如何在Angular应用中设置Application Insights实例。示例中首先通过import语句引入了Angular框架的Component装饰器以及Application Insights的类。然后,通过Component装饰器定义了一个Angular组件,这个组件是应用的一个基本单元,负责处理视图和用户交互。在组件类中,开发者可以设置Application Insights的实例,并将插件添加到实例中,从而启用特定的功能。 5. TypeScript标签的含义: TypeScript是JavaScript的一个超集,它添加了类型系统和一些其他特性,以帮助开发更大型的JavaScript应用。使用TypeScript可以提高代码的可读性和可维护性,并且可以利用TypeScript提供的强类型特性来在编译阶段就发现潜在的错误。文档中提到的标签"TypeScript"强调了该插件及其示例代码是用TypeScript编写的,因此在实际应用中也需要以TypeScript来开发和维护。 6. 压缩包子文件的文件名称列表: 在实际的项目部署中,可能会用到压缩包子文件(通常是一些JavaScript库的压缩和打包后的文件)。在本例中,"applicationinsights-angularplugin-js-main"很可能是该插件主要的入口文件或者压缩包文件的名称。在开发过程中,开发者需要确保引用了正确的文件,以便将插件的功能正确地集成到项目中。 总结而言,Application Insights Angular插件是为了加强在Angular应用中使用Application Insights Javascript SDK的能力,帮助开发者更好地监控和分析应用的运行情况。通过使用该插件,可以跟踪路由器更改和未捕获异常等关键信息。安装与配置过程简单明了,但是需要注意兼容性问题以及正确引用文件,以确保插件能够顺利工作。