摘要:
#include#include#define LEN sizeof(struct Student)struct Student{long num; //学号float score; //成绩struct Student *next;};int n;struct Student *creat(voi... 阅读全文
摘要:
#include#include#define LEN sizeof(struct Student)struct Student{long num; //学号float score; //成绩struct Student *next;};int n;struct Student *creat(voi... 阅读全文
摘要:
#include//定义结构体struct Student{int num;float score;struct Student *next;};int main(){struct Student a,b,c,*head,*p;a.num=101;a.score=89;b.num=102;b.sco... 阅读全文
|