数据结构day1
一、思维导图
二、课后习题
代码
#include #define MAX_SIZE 100 //定义结构体类型 struct Stu { char name[20]; //学生名 char id[10]; //学号 char sex[10]; //性别 double score; //成绩 }; //定义一个学生信息数组 struct Stu student[MAX_SIZE]; int size = 0; //数组实际使用个数 //录入学生信息 void Enter_stu() { //初始化数组 memset(student,0,sizeof(student)); printf("请输入学生个数:"); scanf("%d",&size); getchar(); //循环输入学生数组信息 for(int i=0;i
文章版权声明:除非注明,否则均为主机测评原创文章,转载或复制请以超链接形式并注明出处。