设为首页 加入收藏

TOP

2011年计算机二级C语言第八十七套上机题库及答案
2014-11-23 22:07:37 】 浏览:324
Tags:2011年 计算机 二级 语言 第八十七 上机 题库 答案

  例如:传给形参a的数据中,学号、姓名、和三门课的成绩依次是:10001、


  "ZhangSan"、95、80、88,修改后的数据应为:10002、"LiSi"、96、81、89。


  请在程序的下划线处填入正确的内容并把下划线删除, 使程序得出正确的结果。


  注意:源程序存放在考生文件夹下BLANK1.C中。


  不得增行或删行,也不得更改程序的结构!


  给定源程序:


  #include


  #include


  struct student {


  long sno;


  char name[10];


  float score[3];


  };


  /**********found**********/


  __1__ fun(struct student a)


  {int i;


  a.sno = 10002;


  /**********found**********/


  strcpy(__2__, "LiSi");


  /**********found**********/


  for (i=0; i<3; i++) __3__+= 1;


  return a;


  }


  main()


  {struct student s={10001,"ZhangSan", 95, 80, 88}, t;


  int i;


  printf("\n\nThe original data :\n");


  printf("\nNo: %ld Name: %s\nScores: ",s.sno, s.name);


  for (i=0; i<3; i++) printf("%6.2f ", s.score[i]);


  printf("\n");


  t = fun(s);


  printf("\nThe data after modified :\n");


  printf("\nNo: %ld Name: %s\nScores: ",t.sno, t.name);


  for (i=0; i<3; i++) printf("%6.2f ", t.score[i]);


  printf("\n");


  }


  解题答案:


  /**********第一空**********/


  struct student fun(struct student a)


  /**********第二空**********/


  strcpy(a.name, "LiSi");


  /**********第三空**********/


  for (i=0; i<3; i++) a.score[i]+= 1;


  ******************************************


  相关专题:


  编辑推荐:


】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇2011年计算机二级C语言第八十六套.. 下一篇2011年计算机二级C语言第八十八套..

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目