#include<stdio.h>
#include<string.h>
#define N 5
void input(int num[],char name[][20],double score[][4]);
void average(double score[][4]);
void search(int n,int num[],char name[][20],double score[][4]);
void sort(int num[],char name[][20],double score[][4]);
void excellent(int num[],char (*name)[20],double (*p)[4]);
int main()
{
int n;///存放需要查找的数
int num[N];//存放N个学生的学号信息
char name[N][20];//存放N个学生的姓名信息
double score[N][4];//存放N个学生的三门课成绩和平均分
int choice;
printf("Input each students's information\n");
input(num,name,score);
/*显示主菜单*/
while(1)
{
printf("===============the Score Processing System============================\n");
printf("1,print each student's average\n");
printf("2,order the students by student's average decreasingly\n");
printf("3,search the student \n");
printf("4,print each student who is higher average score than 80 ");
录入学生的所有数据(学号,姓名,三门课程成绩),选择性输出 包括(所有学生平均分,根据学号查询学生数据,查看排名,输出80分以上的全部学生数据)四个选项
最新推荐文章于 2023-01-27 14:42:19 发布
本文介绍如何使用C语言编程实现学生数据录入,包括学号、姓名及三门课程成绩,并提供了四种功能:计算所有学生平均分、按学号查询学生详细信息、查看成绩排名以及列出所有80分以上的学生数据。通过此系统,可以方便地进行学生成绩管理和分析。
摘要由CSDN通过智能技术生成