控制台程序,//学生信息管理系统#include#include//定义学生结构体structStudent{charid[20];//学号charname[20];//姓名charsex[5];//性别intage;//年龄intscore;//综合积分};//定义一个学生结构体的数组,作为全局变量,用来存储学生信息structStudents[100];//定义一个变量来标示已经录入的学生信息的个数,作为全局变量intcount=0;//1、增加学生信息voidadd(){inti,flag=0;chartem