You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
410 B

#include"zengjia.c"
void show() /* 显示信息 */
{
int i;
printf("所有学生的信息为:\n");
printf("学生学号 学生姓名 年龄 性别 出生年月 地址 电话 E-mail\n");
printf("--------------------------------------------------------------------\n");
for(i=0;i<n;i++)
{
printf("%6s %7s %5d %5s %9s %8s %10s %14s\n",stu[i].id,stu[i].name,stu[i].age,
stu[i].sex,stu[i].birth,stu[i].add,stu[i].tel,stu[i].email);
}
}