#include <stdio.h>#include <stdlib.h> const int N=5;// 定义结构体类型struct student,并定义STU为其别名 typedef struct student {long no;char name[20];int score; }STU;// 函数声明 void input(STU s[], int n);int findMinlist(STU s[], STU t[], int n);void output(STU s[], int n) ......
本文摘自 :https://www.cnblogs.com/


