结构体变量及结构体数组.doc

  1. 1、本文档共14页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
第一套 1、程序填空题 注意:源程序存放在考生文件夹下的BLANK1.C中。 不得增行或删行,也不得更改程序的结构! #include stdio.h #include string.h struct student { long sno; char name[10]; float score[3]; }; void fun(struct student a) { struct student b; int i; /**********found**********/ b = __1__; b.sno = 10002; /**********found**********/ strcpy(__2__, LiSi); printf(\nThe data after modified :\n); printf(\nNo: %ld Name: %s\nScores: ,b.sno, b.name); /**********found**********/ for (i=0; i3; i++) printf(%6.2f , b.__3__); printf(\n); } main() { struct student s={10001,ZhangSan, 95, 80, 88}; int i; printf(\n\nThe original data :\n); printf(\nNo: %ld Name: %s\nScores: ,s.sno, s.name); for (i=0; i3; i++) printf(%6.2f , s.score[i]); printf(\n); fun(s); } 2、程序设计题(在结构体数组中查找指定学号的学生数据) 学生的记录由学号和成绩组成,N名学生的数据已在主函数中放入结构体数组s中,请编写函数fun,它的功能是:函数返回指定学号的学生数据,指定的学号在主函数中输入。若没找到指定学号,在结构体变量中给学号置空串,给成绩置-1,作为函数值返回。(用于字符串比较的函数是strcmp)。 注意:部分源程序在文件PROG1.C中。 请勿改动主函数main和其它函数中的任何内容,仅在函数fun的花括号中填入你编写的若干语句。 #include stdio.h #include string.h #define N 16 typedef struct { char num[10]; int s; } STREC; STREC fun( STREC *a, char *b ) { } main() { STREC s[N]={{GA005,85},{GA003,76},{GA002,69},{GA004,85},{GA001,91}, {GA007,72}, {GA008,64},{GA006,87},{GA015,85},{GA013,91},{GA012,64}, {GA014,91}, {GA011,77}, {GA017,64},{GA018,64},{GA016,72}}; STREC h; char m[10]; int i;FILE *out ; printf(The original data:\n); for(i=0; iN; i++) { if(i%4==0) printf(\n); printf(%s %3d ,s[i].num,s[i].s); } printf(\n\nEnter the number: );gets(m); h=fun( s,m ); printf(The data : ); printf(\n%s %4d\n,h.num,h.s); printf(\n); } 第二套 1、程序填空题(通过被调函数输出结构体变量各成员的值) 程序通过定义并赋初值的方式,利用结构体变量存储了一名学生的信息。函数fun的功能是输出这位学生的信息。 请在程序的下划线处填入正确的内容并把下划线删除,使程序得出正确的结果。 注意:源程序存放在考生文件夹下的BLANK1.C中。 不得增行或删行,也不得更改程序的结构! #include stdio.h typedef struct { int num; char name[9]; char sex; struct { int year,month,day ;} birthday; float score[3]; }STU; /**********found**********/ void show(STU ___1

文档评论(0)

xiaofei2001128 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档