用c语言数组编写程序有n个学生,每个学生有考号和总成绩,如果录取m人,确定录取分数线,并输出录取考

日期:2021-06-05 19:04:27 人气:1

用c语言数组编写程序有n个学生,每个学生有考号和总成绩,如果录取m人,确定录取分数线,并输出录取考

#include <stdio.h>
typedef struct student_msg{

int number;
int score;
struct student_msg *next;
}MSG;
void insert_link(MSG **head, MSG *p_new);
void order_link(MSG *head, int m);
int mai
    A+
热门评论