1.学生信息用结构体tStudent{char name[100]; bool isMale; int chi, math}描述,给定若干个学生的信息,输入一个学生姓名,输出该学生的姓名、语文成绩、数学成绩、总分。 #include #include using namespace std; struct tstudent { char name[100]; bool isMale; int chi, math, total; }stu[10]={{Li1, 1, 100, 100},{Li2, 0, 100, 99},{Hznag1, 1, 99, 90}