【计算机类职业资格】三级信息管理技术机试-294及答案解析.doc

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

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

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

3、();writeDat();printf(“cnt=%d/n 满足条件的平均值 pjz1=%7.2lf/n 不满足条件的平均值pjz2=%7.2lf/n“,cnt,pjz1,pjz2);void readDat()FILE*fp;int i;fP=fopen(“in35.dat“,“r“);for(i=0;i300;i+)fscanf(fp,“%d,“,fclose(fp);void writeDat()FILE*fP;fp=fopen(“out35.dat“,“w“);fprintf(fp,“%d/n%7.2lf/n%7.2lf/n“,cnt,pjz1,pjz2);fclose(fp);(分

4、数:100.00)_三级信息管理技术机试-294 答案解析(总分:100.00,做题时间:90 分钟)一、上机题(总题数:1,分数:100.00)1.已知数据文件 IN35.DAT 中存有 300 个 4 位数,并已调用函数 readDat()把这些数存人数组 a 中,请编制一函数 jsValue(),其功能是:求出千位数上的数加个位数上的数等于百位数上的数加十位数上的数的个数 cnt,再求出所有满足此条件的 4 位数的平均值 pjz1,以及所有不满足此条件的 4 位数的平均值pjz2,最后调用函数 wfiteDat()把结果 cnt、pjz1、pjz2 输出到 out35.dat 文件中。例

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

6、);jsValue();writeDat();printf(“cnt=%d/n 满足条件的平均值 pjz1=%7.2lf/n 不满足条件的平均值pjz2=%7.2lf/n“,cnt,pjz1,pjz2);void readDat()FILE*fp;int i;fP=fopen(“in35.dat“,“r“);for(i=0;i300;i+)fscanf(fp,“%d,“,fclose(fp);void writeDat()FILE*fP;fp=fopen(“out35.dat“,“w“);fprintf(fp,“%d/n%7.2lf/n%7.2lf/n“,cnt,pjz1,pjz2);fclo

7、se(fp);(分数:100.00)_正确答案:(void jsValue()int i,n=0; /*定义循环变量和计数器变量*/int a1,a2,a3,a4; /*定义变量保存 4 位数的每位数字*/for(i=0;i300;i+) /*逐个取每一个 4 位数*/a4=ai/1000; /*求 4 位数的千位数字*/a3=ai%1000/100; /*求 4 位数的百位数字*/a2=ai%100/10; /*求 4 位数的十位数字*/al=ai%10; /*求 4 住数的个位数字*/if(a4+a1=a3+a2) /*如果千位数字加个位数字等于百位数字加十位数字*/cnt+; /*则统计

8、满足条件的数的个数*/pjz1+=ai; /*对满足条件的数求和*/elSen+; /*否则统计不满足条件的数的个数*/pjz2+=ai; /*对不满足条件的数求和*/pjz1/=cnt; /*求满足条件的数的平均值*/pjz2/=n; /*求不满足奈件的数的平均值*/)解析:解析 根据题意可知,函数 jsValue()要实现两个功能:分别找出满足条件和不满足条件的数,并分别求出它们的平均值。首先找出满足条件的数,关键在于判断每个数的千位数字加个位数字的和是否等于百位数字加十位数字的和,此处通过一个 if 语句判断 4 位数是否符合该条件。其次,对符合条件和不符合条件的数分别进行统计。最后,再分别计算出符合条件和不符合条件的数的平均值。

展开阅读全文
相关资源
猜你喜欢
  • EN 62133-1-2017 en Secondary cells and batteries containing alkaline or other nonacid electrolytes - Safety requirements for portable sealed secondary cells and for batteries made .pdf EN 62133-1-2017 en Secondary cells and batteries containing alkaline or other nonacid electrolytes - Safety requirements for portable sealed secondary cells and for batteries made .pdf
  • EN 62133-2-2017 en Secondary cells and batteries containing alkaline or other nonacid electrolytes - Safety requirements for portable sealed secondary cells and for batteries made .pdf EN 62133-2-2017 en Secondary cells and batteries containing alkaline or other nonacid electrolytes - Safety requirements for portable sealed secondary cells and for batteries made .pdf
  • EN 62133-2013 en Secondary cells and batteries containing alkaline or other non-acid electrolytes - Safety requirements for portable sealed secondary cells and for batteries made f.pdf EN 62133-2013 en Secondary cells and batteries containing alkaline or other non-acid electrolytes - Safety requirements for portable sealed secondary cells and for batteries made f.pdf
  • EN 62134-1-2009 en Fibre optic interconnecting devices and passive components - Fibre optic closures - Part 1 Generic specification《光纤互连器件和无源器件 光纤器件外壳 第1部分 通用规范》.pdf EN 62134-1-2009 en Fibre optic interconnecting devices and passive components - Fibre optic closures - Part 1 Generic specification《光纤互连器件和无源器件 光纤器件外壳 第1部分 通用规范》.pdf
  • EN 62135-1-2008 317 Resistance welding equipment - Part 1 Safety requirements for design manufacture and installation《电阻熔焊设备 第1部分 设计 生产和安装的安全性要求[替代 CENELEC EN 50063]》.pdf EN 62135-1-2008 317 Resistance welding equipment - Part 1 Safety requirements for design manufacture and installation《电阻熔焊设备 第1部分 设计 生产和安装的安全性要求[替代 CENELEC EN 50063]》.pdf
  • EN 62135-1-2015 en Resistance welding equipment - Part 1 Safety requirements for design manufacture and installation (Incorporating corrigendum February 2016).pdf EN 62135-1-2015 en Resistance welding equipment - Part 1 Safety requirements for design manufacture and installation (Incorporating corrigendum February 2016).pdf
  • EN 62135-2-2015 en Resistance welding equipment - Part 2 Electromagnetic compatibility (EMC) requirements.pdf EN 62135-2-2015 en Resistance welding equipment - Part 2 Electromagnetic compatibility (EMC) requirements.pdf
  • EN 62137-1-1-2007 en Surface mounting technology - Environmental and endurance test methods for surface mount solder joint - Part 1-1 Pull strength test《表面安装技术 表面安装焊接接缝的环境和耐久性试验方法 .pdf EN 62137-1-1-2007 en Surface mounting technology - Environmental and endurance test methods for surface mount solder joint - Part 1-1 Pull strength test《表面安装技术 表面安装焊接接缝的环境和耐久性试验方法 .pdf
  • EN 62137-1-2-2007 en Surface mounting technology - Environmental and endurance test methods for surface mount solder joint - Part 1-2 Shear strength test《表面安装技术 表面安装焊接接缝的环境和耐久性试验方法.pdf EN 62137-1-2-2007 en Surface mounting technology - Environmental and endurance test methods for surface mount solder joint - Part 1-2 Shear strength test《表面安装技术 表面安装焊接接缝的环境和耐久性试验方法.pdf
  • 相关搜索

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

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