C语言编写的简单学生成绩管理系统.docVIP

  • 17
  • 0
  • 约9.12千字
  • 约 14页
  • 2017-12-14 发布于湖北
  • 举报
C语言编写的简单学生成绩管理系统

C语言编写的简单学生成绩管理系统 C语言编写的简单学生成绩管理系统 #include stdio.h #include stddef.h #include stdlib.h #include conio.h /*屏幕操作函数*/ #include string.h #define MAX 10 typedef struct student{ char name[MAX]; char num[MAX]; char sex[MAX]; int age; int chinese; int mathematic; int english; float aver; struct student *next; }stu; stu *head; void print() /*输出菜单*/ { textcolor(RED); /*设置文本显示颜色为红色*/ textbackground(GREEN); /*设置背景颜色为绿色*/ window(1,1,80,10); /* 制作显示菜单的窗口*/ clrscr(); printf( ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n); printf( ************ welcome to use student manage *****************

文档评论(0)

1亿VIP精品文档

相关文档