太自由

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 ··· 12 13 14 15 16

2015年9月11日

摘要: #include#include#define LEN sizeof(struct Student)struct Student{long num; //学号float score; //成绩struct Student *next;};int n;struct Student *creat(voi... 阅读全文
posted @ 2015-09-11 18:21 太自由 阅读(414) 评论(0) 推荐(0) 编辑

摘要: #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... 阅读全文
posted @ 2015-09-11 18:20 太自由 阅读(263) 评论(0) 推荐(0) 编辑

上一页 1 ··· 12 13 14 15 16