【计算机类职业资格】三级数据库技术机试-250及答案解析.doc

上传人:dealItalian200 文档编号:1321288 上传时间:2019-10-17 格式:DOC 页数:4 大小:28KB
下载 相关 举报
【计算机类职业资格】三级数据库技术机试-250及答案解析.doc_第1页
第1页 / 共4页
【计算机类职业资格】三级数据库技术机试-250及答案解析.doc_第2页
第2页 / 共4页
【计算机类职业资格】三级数据库技术机试-250及答案解析.doc_第3页
第3页 / 共4页
【计算机类职业资格】三级数据库技术机试-250及答案解析.doc_第4页
第4页 / 共4页
亲,该文档总共4页,全部预览完了,如果喜欢就下载吧!
资源描述

1、三级数据库技术机试-250 及答案解析(总分:100.00,做题时间:90 分钟)一、上机题(总题数:1,分数:100.00)1.已知数据文件 IN87.DAT中存有 300个 4位数,并已调用函数 readDat()把这些数存入数组 a中,请编制一函数 isValue(),其功能是:求出千位数上的数加个位数上的数等于百位数上的数加十位数上的数的个数 cnt,再求出所有满足此条件的 4位数平均值 pjz1,以及所有不满足此条件的 4位数的平均值pjz2,最后调用函数 writeDat()把结果 cnt,pjz1,pjz2,输出到 out87.dat文件中。例如:6712,6+2=7+1,则该数

2、满足条件,计算平均值 pjz1,且个数 cnt=cnt+1。8129,8+91+2,则该数不满足条件,计算平均值 pjz2。注意:部分源程序已给出。程序中已定义数组:a300,b300,已定义变量:cnt,pjz1,pjz2。请勿改动主函数 main()、读函数 readDat()和写函数 writeDat()的内容。试题程序:#includestdio .hint a300, cnt=0;double pjz1=0.0,pjz2=0.0;void jsValue()main ( )int i;readDat ( );jsValue();writeDat ( );printf ( “cnt=%

3、d/n满足条件的平均值 pjz1=%7.21fkn不满足条件的平均值 pjz2=%7.21f/n“,cnt,pjz1,pjz2);readDat ( )FILE *fp;int i;fp=fopen( “in87.dat“,“r“);for (i=0; i300; i+)fscanf(fp,“%d,“,fclose(fp);writeDat ( )FILE *fp;int i;fP=fopen(“out87.dat“,“w“);fprintf(fP,“%dkn%7.21f/n%7.21f/n“,cnt ,pjz1,pjz2);fclose(fp);(分数:100.00)_三级数据库技术机试-2

4、50 答案解析(总分:100.00,做题时间:90 分钟)一、上机题(总题数:1,分数:100.00)1.已知数据文件 IN87.DAT中存有 300个 4位数,并已调用函数 readDat()把这些数存入数组 a中,请编制一函数 isValue(),其功能是:求出千位数上的数加个位数上的数等于百位数上的数加十位数上的数的个数 cnt,再求出所有满足此条件的 4位数平均值 pjz1,以及所有不满足此条件的 4位数的平均值pjz2,最后调用函数 writeDat()把结果 cnt,pjz1,pjz2,输出到 out87.dat文件中。例如:6712,6+2=7+1,则该数满足条件,计算平均值 p

5、jz1,且个数 cnt=cnt+1。8129,8+91+2,则该数不满足条件,计算平均值 pjz2。注意:部分源程序已给出。程序中已定义数组:a300,b300,已定义变量:cnt,pjz1,pjz2。请勿改动主函数 main()、读函数 readDat()和写函数 writeDat()的内容。试题程序:#includestdio .hint a300, cnt=0;double pjz1=0.0,pjz2=0.0;void jsValue()main ( )int i;readDat ( );jsValue();writeDat ( );printf ( “cnt=%d/n满足条件的平均值

6、pjz1=%7.21fkn不满足条件的平均值 pjz2=%7.21f/n“,cnt,pjz1,pjz2);readDat ( )FILE *fp;int i;fp=fopen( “in87.dat“,“r“);for (i=0; i300; i+)fscanf(fp,“%d,“,fclose(fp);writeDat ( )FILE *fp;int i;fP=fopen(“out87.dat“,“w“);fprintf(fP,“%dkn%7.21f/n%7.21f/n“,cnt ,pjz1,pjz2);fclose(fp);(分数:100.00)_正确答案:(void j sValue ( )

7、int i, thou, hun, ten, data, n=0;for (i=0; i300; i+)thou=a i/1000; /*求四位数的千位数字*/hun=a i %1000/100; /*求四位数的百位数字*/ten=a i %100/10; /*求四位数的十位数字*/data=a i %10; /*求四位数的个位数字*/if thou+data=hun+ten) /*如果千位数加个位数等于百位数加十位数*/cnt+; /* 则统计满足条件的数的个数*/pjz1+=ai; /*将满足条件的数求和*/elsen+; /*否则统计不满足条件的数的个数*/pjz2+=ai; /*将不满足条件的数求和*/ pjz1/=cnt; /*求满足条件的数的平均值*/pjz2/=n; /*求不满足条件的数的平均值*/)解析:解析 本题考查的知识点如下:(1)运算符“%”及“/”的使用。(2)循环结构及选择结构的使用。在本题中,首先要将一个 4位数的千位、百位、十位、个位拆成独立的数字。这里借助特殊运算符号“%”(取余)和“/”(整除),拆分方法略。然后判断符合千位数+个位数=百位数+十位数的数的个数。依次求得符合各种条件的数的和及其平均值。

展开阅读全文
相关资源
猜你喜欢
  • DIN 19745-2006 Soil quality - Principles of the determination of the water content by Time Domain Reflectometry (TDR) and Time Domain Transmissometry (TDT)《土壤质量 时间域反射测量法(TDR)和时间域大气.pdf DIN 19745-2006 Soil quality - Principles of the determination of the water content by Time Domain Reflectometry (TDR) and Time Domain Transmissometry (TDT)《土壤质量 时间域反射测量法(TDR)和时间域大气.pdf
  • DIN 19746-2005 Soil quality - Determination of mineral nitrogen (nitrat and ammonium) in soil profiles (Nmin laboratory method)《土壤质量 土层剖面中矿物氮(硝酸盐和铵)的测定(Nmin实验室方法)》.pdf DIN 19746-2005 Soil quality - Determination of mineral nitrogen (nitrat and ammonium) in soil profiles (Nmin laboratory method)《土壤质量 土层剖面中矿物氮(硝酸盐和铵)的测定(Nmin实验室方法)》.pdf
  • DIN 19747-2009 Investigation of solids - Pre-treatment preparation and processing of samples for chemical biological and physical investigations《固体检验 化学 生物和物理检验用样品的预处理 制备和加工》.pdf DIN 19747-2009 Investigation of solids - Pre-treatment preparation and processing of samples for chemical biological and physical investigations《固体检验 化学 生物和物理检验用样品的预处理 制备和加工》.pdf
  • DIN 19752-1986 Hydroelectric power plants rules for planning and operation《水电站 规划制定和运行规则》.pdf DIN 19752-1986 Hydroelectric power plants rules for planning and operation《水电站 规划制定和运行规则》.pdf
  • DIN 19802-1977 Cast iron special castings for asbestos cement pressure pipelines spigot ends《石棉水泥压力管道用铸铁专用铸件 套管头》.pdf DIN 19802-1977 Cast iron special castings for asbestos cement pressure pipelines spigot ends《石棉水泥压力管道用铸铁专用铸件 套管头》.pdf
  • DIN 19850-1-1996 Fibre cement pipes and fittings for sewers - Part 1 Dimensions of pipes branches and bends《污水管道用纤维水泥管和配件件 第1部分 管 支管和弯头尺寸》.pdf DIN 19850-1-1996 Fibre cement pipes and fittings for sewers - Part 1 Dimensions of pipes branches and bends《污水管道用纤维水泥管和配件件 第1部分 管 支管和弯头尺寸》.pdf
  • DIN 19850-2-1996 Fibre cement pipes and fittings for sewers - Part 2 Dimensions of joints《纤维水泥污水管和接头 第2部分 接头尺寸》.pdf DIN 19850-2-1996 Fibre cement pipes and fittings for sewers - Part 2 Dimensions of joints《纤维水泥污水管和接头 第2部分 接头尺寸》.pdf
  • DIN 19850-3-1990 Fibre-cement manholes for use in sewerage systems dimensions and technical delivery conditions《地下污水渠道和管道用纤维水泥管 纤维水泥异型件和人孔井 人孔井 尺寸 交货技术条件》.pdf DIN 19850-3-1990 Fibre-cement manholes for use in sewerage systems dimensions and technical delivery conditions《地下污水渠道和管道用纤维水泥管 纤维水泥异型件和人孔井 人孔井 尺寸 交货技术条件》.pdf
  • DIN 1986-100-2016 Drainage systems on private ground - Part 100 Specifications in relation to DIN EN 752 and DIN EN 12056《专用地段排水设备 第100部分 关于DIN EN 752和DIN EN 12056的规范》.pdf DIN 1986-100-2016 Drainage systems on private ground - Part 100 Specifications in relation to DIN EN 752 and DIN EN 12056《专用地段排水设备 第100部分 关于DIN EN 752和DIN EN 12056的规范》.pdf
  • 相关搜索

    当前位置:首页 > 考试资料 > 职业资格

    copyright@ 2008-2019 麦多课文库(www.mydoc123.com)网站版权所有
    备案/许可证编号:苏ICP备17064731号-1