C语言从入门154学生对应成绩

日期:2021-08-22 16:01:14 人气:1

C语言从入门154学生对应成绩

#include <stdio.h>
#include <stdlib.h>
struct stud
{
char name[20];
float score;
};
int cmp(const void* a, const void* b)
{
    A+
热门评论