打开visual c++,使用字符数组和实型数组分别存储学生姓名和成绩,并通过对学生成绩的排序,按名次输出

日期:2011-08-06 22:53:54 人气:1

打开visual c++,使用字符数组和实型数组分别存储学生姓名和成绩,并通过对学生成绩的排序,按名次输出

#include #include #define N 5 typedef struct student { char name[20]; double score; } STU, *PSTU; //定义记录类型,及指向记录的指针类型 int compare(const void * s1, const void *s2 )//qsort用的回调函数 { PSTU p1 = (PSTU )s1;
    A+
热门评论