资源简介

本程序用于学生成绩管理,输入学生人数,成绩,并进行排序

资源截图

代码片段和文件信息

/*
时间:2020年3月7日17:02:32
功能:实现学生成绩管理
*/
#include
#include

struct Student
{
int age;
float score;
char name[100];
};

//函数功能:输入学生信息
void InputStudent(struct Student *pstint len)
{
int i;
    for(i=0;i {
printf(“请输入第%d个学生的信息:\n“i+1);
printf(“age = “);
scanf(“%d“&pst[i].age);
printf(“name = “);
scanf(“%s“pst[i].name);
printf(“score = “);
scanf(“%f“&pst[i].score);
}

}

//函数功能:冒泡算法实现成绩升序排列
void sort(struct Student *pstint len)
{
   int ij;
   struct Student t;
   for(i=0;i {
for(j=0;j {
if(pst[j].score>pst[j+1].score)
{
t = p

评论

共有 条评论