学生成绩管理系统——C语言版.docxVIP

  • 6
  • 0
  • 约8.86千字
  • 约 12页
  • 2020-10-29 发布于山东
  • 举报
#includestdio.h #includeprocess.h  /* 常用的标准输入输出函数 /*access 函数原型包含 */  */ #includeio.h #includestring.h  /*exit 函数原型包含 /*strcmp 函数原型包含  */  */ #includeconio.h #includestdlib.h #include string #define N 100  /* 最多的学生人数  */ struct student  /* 学生结构体定义  */ { char clas[15]; char no[13]; char name[20];  /* 班级 */ /* 学号,最多为 /* 姓名 */  12 位*/ char sex[8]; char addr[30]; char phone[15];  /* 性别 */ /* 地址 */ /* 电话 */ float score[5]; float ave;  /* 存储五门课成绩 /* 平均分 */  */ }stu[N]; int num; void init(); void weihu(); void tongji(); void tongji1(); void tongji2(); void sort1(); void find1(); void

文档评论(0)

1亿VIP精品文档

相关文档