设为首页 加入收藏

TOP

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

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


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


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


  给定源程序:


  #include


  #include


  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; i<3; 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; i<3; i++) printf("%6.2f ", s.score[i]);


  printf("\n");


  fun(s);


  }


  解题答案:


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


  b = a;


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


  strcpy(b.name, "LiSi");


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


  for (i=0; i<3; i++) printf("%6.2f ",


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


  相关专题:


  编辑推荐:


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

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目