(3) 学生信息包括学号、姓名、至少三门课程成绩,用数组实现下列要求中的至少4个功能。

日期:2018-06-26 20:24:56 人气:1

(3) 学生信息包括学号、姓名、至少三门课程成绩,用数组实现下列要求中的至少4个功能。

临时写的,没有编译,应该差不离。 #include #define MAX_CORE_NUM 3 #define MAX_STU_NUM 100 struct stu_info_t { int no; char name[50]; int is_male; int core[MAX_CORE_NUM]; int core_total; int rank; }; int class_min_stu[MAX_CORE_NUM]; int class_max_stu[MAX
    A+
热门评论