设计学生成绩记录薄c程序。 题目: 每个学生课程成绩信息包括:学号 姓名 平时成绩(20%) 期

日期:2016-08-22 02:43:49 人气:2

设计学生成绩记录薄c程序。 题目: 每个学生课程成绩信息包括:学号 姓名 平时成绩(20%) 期

#include #include #include struct STUDENT{ float score[3]; long id; char names[20];};typedef struct STUDENT student;//simplify the struct STUDENTtypedef struct STUDENT *Pstudent; void print();void append();void course_total();void stude
    A+
热门评论