键盘输入20个学生的姓名和总分,按总分从大到小的顺序输出这20个学生的姓名和总分
键盘输入20个学生的姓名和总分,按总分从大到小的顺序输出这20个学生的姓名和总分仅供参考,欢迎大神们提出更好的想法。#include<stdio.h>#define N 20struct student{ char name[20]; float score;};int main(){ struct student stu[N]; struct student temp; int i,j; printf("请输入20个学生的姓名和总分:\n");