C语言设计一考勤系统。考勤信息记录了学生的缺课情况,它包括:缺课日期、第几节课、课程名称、学生姓名、学生学号、缺课类型(迟到、早退、请假及旷课)。系统具有以下功能: 1、 录入学生的缺课记录; 2、 修改某个学生的缺课记录; 3、 查询某个学生的缺课情况; 4、 统计某段时间内,旷课学生姓名及旷课次数,按旷课次数由多到少排序; 5、 统计某段时间内,有学生旷课的课程及旷课人次,按旷课人次由多到少排序; 6、 系统以菜单方式工作。

时间: 2023-07-10 17:03:59 浏览: 147
DOC

C语言课程设计——学生考勤管理系统.doc

star5星 · 资源好评率100%
以下是一个基本的考勤系统的C语言实现: ```c #include <stdio.h> #include <string.h> #define MAX_STUDENTS 100 #define MAX_ABSENCES 200 typedef struct { int day; int period; char course[50]; char name[50]; char id[20]; char type[10]; } Absence; typedef struct { char name[50]; char id[20]; int num_absences; Absence absences[MAX_ABSENCES]; } Student; Student students[MAX_STUDENTS]; int num_students = 0; void add_absence() { printf("Enter absence information:\n"); Absence absence; printf("Day: "); scanf("%d", &absence.day); printf("Period: "); scanf("%d", &absence.period); printf("Course: "); scanf("%s", absence.course); printf("Name: "); scanf("%s", absence.name); printf("ID: "); scanf("%s", absence.id); printf("Type (late, early, leave, absent): "); scanf("%s", absence.type); // Find the student and add the absence to their record int i; for (i = 0; i < num_students; i++) { if (strcmp(students[i].name, absence.name) == 0 && strcmp(students[i].id, absence.id) == 0) { students[i].absences[students[i].num_absences] = absence; students[i].num_absences++; printf("Absence added.\n"); return; } } // If the student wasn't found, create a new record for them Student student; strcpy(student.name, absence.name); strcpy(student.id, absence.id); student.absences[0] = absence; student.num_absences = 1; students[num_students] = student; num_students++; printf("Student and absence added.\n"); } void modify_absence() { char name[50]; char id[20]; printf("Enter the name and ID of the student whose absence you want to modify:\n"); scanf("%s %s", name, id); // Find the student int i, j; for (i = 0; i < num_students; i++) { if (strcmp(students[i].name, name) == 0 && strcmp(students[i].id, id) == 0) { // Display the student's absences and prompt the user to choose one to modify printf("Student found. Here are their absences:\n"); for (j = 0; j < students[i].num_absences; j++) { printf("%d %d %s %s %s %s\n", students[i].absences[j].day, students[i].absences[j].period, students[i].absences[j].course, students[i].absences[j].name, students[i].absences[j].id, students[i].absences[j].type); } printf("Enter the number of the absence you want to modify:\n"); int num; scanf("%d", &num); if (num < 0 || num >= students[i].num_absences) { printf("Invalid absence number.\n"); return; } // Modify the absence Absence absence = students[i].absences[num]; printf("Enter new information for the absence:\n"); printf("Day: "); scanf("%d", &absence.day); printf("Period: "); scanf("%d", &absence.period); printf("Course: "); scanf("%s", absence.course); printf("Name: "); scanf("%s", absence.name); printf("ID: "); scanf("%s", absence.id); printf("Type (late, early, leave, absent): "); scanf("%s", absence.type); students[i].absences[num] = absence; printf("Absence modified.\n"); return; } } printf("Student not found.\n"); } void display_student() { char name[50]; char id[20]; printf("Enter the name and ID of the student whose absences you want to display:\n"); scanf("%s %s", name, id); // Find the student and display their absences int i, j; for (i = 0; i < num_students; i++) { if (strcmp(students[i].name, name) == 0 && strcmp(students[i].id, id) == 0) { printf("Student found. Here are their absences:\n"); for (j = 0; j < students[i].num_absences; j++) { printf("%d %d %s %s %s %s\n", students[i].absences[j].day, students[i].absences[j].period, students[i].absences[j].course, students[i].absences[j].name, students[i].absences[j].id, students[i].absences[j].type); } return; } } printf("Student not found.\n"); } void sort_students(int arr[], int n) { int i, j; for (i = 0; i < n-1; i++) { for (j = 0; j < n-i-1; j++) { if (arr[j] < arr[j+1]) { int temp = arr[j]; arr[j] = arr[j+1]; arr[j+1] = temp; } } } } void display_ranked_students() { int start_day, end_day; printf("Enter the starting and ending days of the period you want to check:\n"); scanf("%d %d", &start_day, &end_day); // Count the number of absences for each student in the period int num_absences[num_students]; int i, j; for (i = 0; i < num_students; i++) { num_absences[i] = 0; for (j = 0; j < students[i].num_absences; j++) { if (students[i].absences[j].day >= start_day && students[i].absences[j].day <= end_day && strcmp(students[i].absences[j].type, "absent") == 0) { num_absences[i]++; } } } // Sort the students by number of absences and display them sort_students(num_absences, num_students); printf("Students ranked by number of absences:\n"); for (i = 0; i < num_students; i++) { for (j = 0; j < num_students; j++) { if (num_absences[i] == 0) { break; } if (strcmp(students[j].id, "") != 0 && num_absences[i] == students[j].num_absences) { printf("%s: %d absences\n", students[j].name, num_absences[i]); students[j].id[0] = '\0'; // Mark the student as already displayed break; } } } } void display_ranked_courses() { int start_day, end_day; printf("Enter the starting and ending days of the period you want to check:\n"); scanf("%d %d", &start_day, &end_day); // Count the number of absences for each course in the period char courses[MAX_ABSENCES][50]; int num_absences[MAX_ABSENCES]; int num_courses = 0; int i, j, k; for (i = 0; i < num_students; i++) { for (j = 0; j < students[i].num_absences; j++) { if (students[i].absences[j].day >= start_day && students[i].absences[j].day <= end_day && strcmp(students[i].absences[j].type, "absent") == 0) { // Check if the course has already been added to the array int found = 0; for (k = 0; k < num_courses; k++) { if (strcmp(courses[k], students[i].absences[j].course) == 0) { num_absences[k]++; found = 1; break; } } // If not, add it if (!found) { strcpy(courses[num_courses], students[i].absences[j].course); num_absences[num_courses] = 1; num_courses++; } } } } // Sort the courses by number of absences and display them sort_students(num_absences, num_courses); printf("Courses ranked by number of absences:\n"); for (i = 0; i < num_courses; i++) { for (j = 0; j < num_courses; j++) { if (num_absences[i] == 0) { break; } if (strcmp(courses[j], "") != 0 && num_absences[i] == num_absences[j]) { printf("%s: %d absences\n", courses[j], num_absences[i]); courses[j][0] = '\0'; // Mark the course as already displayed break; } } } } int main() { int choice; do { printf("\nAttendance System Main Menu\n"); printf("1. Add an absence\n"); printf("2. Modify an absence\n"); printf("3. Display a student's absences\n"); printf("4. Display ranked list of students with most absences\n"); printf("5. Display ranked list of courses with most absences\n"); printf("6. Quit\n"); printf("Enter your choice: "); scanf("%d", &choice); switch (choice) { case 1: add_absence(); break; case 2: modify_absence(); break; case 3: display_student(); break; case 4: display_ranked_students(); break; case 5: display_ranked_courses(); break; case 6: printf("Goodbye!\n"); break; default: printf("Invalid choice.\n"); break; } } while (choice != 6); return 0; } ``` 该程序使用结构体来存储每个学生的考勤记录,并提供了菜单选项来添加、修改、查询和统计缺课记录。`sort_students`函数使用冒泡排序将一个整数数组按降序排列。`display_ranked_students`和`display_ranked_courses`函数分别统计某段时间内旷课最多的学生和课程,并按旷课次数由多到少排序后显示。
阅读全文

相关推荐

最新推荐

recommend-type

C语言实现学生选修课程系统设计

本系统主要使用C语言实现学生选修课程系统的设计,旨在提供一个功能完善的学生选修课程管理系统。该系统具有添加、查询、显示、编辑、删除和统计等多种功能,能够满足学生和课程信息的管理需求。 添加功能 添加...
recommend-type

C语言数组实现学生信息管理系统设计

"C语言数组实现学生信息管理系统设计" 本文主要介绍了使用C语言数组实现学生信息管理系统的设计,涵盖了学生信息的录入、输出、查找、排序和删除等功能。该系统使用多个数组来存储学生信息,包括学生姓名、数学成绩...
recommend-type

C语言程序设计实现学生成绩记录簿

在《C语言程序设计》课程设计中,"学生成绩记录簿"是一个常见的项目,旨在帮助学生实践并巩固他们的编程技能。这个系统的目标是管理学生的成绩数据,包括录入、修改和删除成绩信息。以下是关于这一课程设计的详细...
recommend-type

C语言课程设计论文-学生考勤系统设计

- **学生信息结构体**:定义一个结构体类型,包含姓名(字符数组)、性别(字符型)、日期(年月日三个字符数组)、节次(整型)和出勤情况(整型)等字段,用于存储学生的基本信息和考勤记录。 3. **函数设计** ...
recommend-type

小学生测验C语言课程设计报告

总结,这份C语言课程设计报告体现了C语言在解决实际问题中的应用,尤其是构建一个在线测验系统,它能够简化教师的工作,提升教学效率,并通过无纸化批改和实时反馈,优化了学生的学习体验。同时,设计过程也对学生...
recommend-type

Android圆角进度条控件的设计与应用

资源摘要信息:"Android-RoundCornerProgressBar" 在Android开发领域,一个美观且实用的进度条控件对于提升用户界面的友好性和交互体验至关重要。"Android-RoundCornerProgressBar"是一个特定类型的进度条控件,它不仅提供了进度指示的常规功能,还具备了圆角视觉效果,使其更加美观且适应现代UI设计趋势。此外,该控件还可以根据需求添加图标,进一步丰富进度条的表现形式。 从技术角度出发,实现圆角进度条涉及到Android自定义控件的开发。开发者需要熟悉Android的视图绘制机制,包括但不限于自定义View类、绘制方法(如`onDraw`)、以及属性动画(Property Animation)。实现圆角效果通常会用到`Canvas`类提供的画图方法,例如`drawRoundRect`函数,来绘制具有圆角的矩形。为了添加图标,还需考虑如何在进度条内部适当地放置和绘制图标资源。 在Android Studio这一集成开发环境(IDE)中,自定义View可以通过继承`View`类或者其子类(如`ProgressBar`)来完成。开发者可以定义自己的XML布局文件来描述自定义View的属性,比如圆角的大小、颜色、进度值等。此外,还需要在Java或Kotlin代码中处理用户交互,以及进度更新的逻辑。 在Android中创建圆角进度条的步骤通常如下: 1. 创建自定义View类:继承自`View`类或`ProgressBar`类,并重写`onDraw`方法来自定义绘制逻辑。 2. 定义XML属性:在资源文件夹中定义`attrs.xml`文件,声明自定义属性,如圆角半径、进度颜色等。 3. 绘制圆角矩形:在`onDraw`方法中使用`Canvas`的`drawRoundRect`方法绘制具有圆角的进度条背景。 4. 绘制进度:利用`Paint`类设置进度条颜色和样式,并通过`drawRect`方法绘制当前进度覆盖在圆角矩形上。 5. 添加图标:根据自定义属性中的图标位置属性,在合适的时机绘制图标。 6. 通过编程方式更新进度:在Activity或Fragment中,使用自定义View的方法来编程更新进度值。 7. 实现动画:如果需要,可以通过Android的动画框架实现进度变化的动画效果。 标签中的"Android开发"表明,这些知识点和技能主要面向的是Android平台的开发人员。对于想要在Android应用中实现自定义圆角进度条的开发者来说,他们需要具备一定的Android编程基础,并熟悉相关的开发工具和库。 在"RoundCornerProgressBar-master"压缩包文件的文件名称列表中,我们可以推测这个资源包含了完整的项目代码,包括源代码、资源文件、布局文件、可能的示例代码以及必要的文档说明。开发者通过下载和解压缩这个包,可以得到一个完整的项目,从而可以直接查看代码实现细节,或是将其集成到自己的项目中。 最终,对于希望使用"Android-RoundCornerProgressBar"的开发者,关键在于理解自定义View的创建过程、圆角图形的绘制技术,以及如何在Android应用中集成和使用这些自定义控件。通过上述知识点的学习和实践,开发者能够掌握在Android应用中创建美观且功能丰富的用户界面所需的技能。
recommend-type

管理建模和仿真的文件

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

【R语言lattice包实战】:从案例到技巧,图形制作不再难

![R语言数据包使用详细教程lattice](http://pfister.ee.duke.edu/images/Nguyen-arxiv11-fig2.jpg) # 1. R语言与lattice包概述 R语言作为统计分析领域内广泛应用的编程语言,凭借其强大的图形功能而受到数据科学家的青睐。在R语言中,lattice包是绘图系统的重要组成部分,它基于trellis图形系统设计,能够高效地创建多变量条件图。本章节将引导读者对lattice包有一个初步的了解,并概述其功能和应用范围。 ## 1.1 R语言中的图形系统 R语言提供了一系列的图形系统,基础图形系统(base graphics)是其
recommend-type

输入正整数n.打出长度为n的菱形

好的,以下是打印菱形的代码实现: ``` #include <stdio.h> #include <stdlib.h> int main() { int n, i, j; printf("请输入一个正整数n:"); scanf("%d", &n); if(n % 2 == 0) { // 如果输入的n是偶数,将其加1变成奇数 n++; } for(i = 0; i < n / 2 + 1; i++) { for(j = 0; j < n / 2 - i; j++) { printf(
recommend-type

mui框架实现带侧边栏的响应式布局

资源摘要信息:"mui实现简单布局.zip" mui是一个基于HTML5的前端框架,它采用了类似Bootstrap的语义化标签,但是专门为移动设备优化。该框架允许开发者使用Web技术快速构建高性能、可定制、跨平台的移动应用。此zip文件可能包含了一个用mui框架实现的简单布局示例,该布局具有侧边栏,能够实现首页内容的切换。 知识点一:mui框架基础 mui框架是一个轻量级的前端库,它提供了一套响应式布局的组件和丰富的API,便于开发者快速上手开发移动应用。mui遵循Web标准,使用HTML、CSS和JavaScript构建应用,它提供了一个类似于jQuery的轻量级库,方便DOM操作和事件处理。mui的核心在于其强大的样式表,通过CSS可以实现各种界面效果。 知识点二:mui的响应式布局 mui框架支持响应式布局,开发者可以通过其提供的标签和类来实现不同屏幕尺寸下的自适应效果。mui框架中的标签通常以“mui-”作为前缀,如mui-container用于创建一个宽度自适应的容器。mui中的布局类,比如mui-row和mui-col,用于创建灵活的栅格系统,方便开发者构建列布局。 知识点三:侧边栏实现 在mui框架中实现侧边栏可以通过多种方式,比如使用mui sidebar组件或者通过布局类来控制侧边栏的位置和宽度。通常,侧边栏会使用mui的绝对定位或者float浮动布局,与主内容区分开来,并通过JavaScript来控制其显示和隐藏。 知识点四:首页内容切换功能 实现首页可切换的功能,通常需要结合mui的JavaScript库来控制DOM元素的显示和隐藏。这可以通过mui提供的事件监听和动画效果来完成。开发者可能会使用mui的开关按钮或者tab标签等组件来实现这一功能。 知识点五:mui的文件结构 该压缩包文件包含的目录结构说明了mui项目的基本结构。其中,"index.html"文件是项目的入口文件,它将展示整个应用的界面。"manifest.json"文件是应用的清单文件,它在Web应用中起到了至关重要的作用,定义了应用的名称、版本、图标和其它配置信息。"css"文件夹包含所有样式表文件,"unpackage"文件夹可能包含了构建应用后的文件,"fonts"文件夹存放字体文件,"js"文件夹则是包含JavaScript代码的地方。 知识点六:mui的打包和分发 mui框架支持项目的打包和分发,开发者可以使用其提供的命令行工具来打包项目,生成可以部署到服务器的静态资源。这一步通常涉及到资源的压缩、合并和优化。打包后,开发者可以将项目作为一个Web应用分发,也可以将其打包为原生应用,比如通过Cordova、PhoneGap等工具打包成可在iOS或Android设备上安装的应用。 知识点七:mui的兼容性和性能优化 mui框架对老旧设备也做了兼容性考虑,保证应用在低端设备上也有较好的性能表现。性能优化方面,mui提供了多种工具和最佳实践,例如使用懒加载、避免全局变量污染、减少DOM操作等策略来提高应用的运行速度和用户体验。 以上内容是根据标题、描述以及文件名称列表推测出的关于mui实现简单布局的知识点。开发者可以通过分析和实践上述知识点来更好地理解和运用mui框架,从而构建出高效且用户友好的移动应用界面。