[计算机类试卷]计算机三级网络技术机试(上机操作)模拟试卷84及答案与解析.doc

上传人:progressking105 文档编号:505749 上传时间:2018-11-29 格式:DOC 页数:4 大小:27.50KB
下载 相关 举报
[计算机类试卷]计算机三级网络技术机试(上机操作)模拟试卷84及答案与解析.doc_第1页
第1页 / 共4页
[计算机类试卷]计算机三级网络技术机试(上机操作)模拟试卷84及答案与解析.doc_第2页
第2页 / 共4页
[计算机类试卷]计算机三级网络技术机试(上机操作)模拟试卷84及答案与解析.doc_第3页
第3页 / 共4页
[计算机类试卷]计算机三级网络技术机试(上机操作)模拟试卷84及答案与解析.doc_第4页
第4页 / 共4页
亲,该文档总共4页,全部预览完了,如果喜欢就下载吧!
资源描述

1、计算机三级网络技术机试(上机操作)模拟试卷 84及答案与解析 一、程序设计题 1 文件 IN DAT、中存有 200个四位整型数函数 readData()负责将 IN DAT中的数读到数组 inBuf中。请编写函数 findValue(),其功能是:把个位数字和千位数字重新组合成一个新的两位数 ab(新两位数的十位数字是原四位数的个位数字,新两位数的个位数字是原四位数的千位数字 ),以及把百位数字和十位数字组成另一个新的两位数 cd(新两位数的十位数字是原四位数的百位数字,新两位数的个位数字是原四位数的十位数字 ), 新组成的两个数均为偶数且两个两位数中至少有一个数能被 9整除同时两个新两位数

2、均不为零。求出满足条件的数用 count记录下符合条件的数的个数,并按照从大到小的顺序存入数组 outBuf中。函数writeData()负责将 outBuf中的数输出到文件 OUT DAT中。并且在屏幕上显示出来。 程序中已定义数组: inBuf200, outBuI200,已定义变量: count。 请勿改动主函数 main()、读函数 readData()和写函数 writeData()的内容。 试题程序 : #include #define NUM 200 int inBufNUM, outBufNUM, count=0; void readData(); void writeData

3、); void findValue() void main() int i; readData(); findValue(); writeData(); printf(“count=0Ad n”, count); for(i一 0; icount; i+) printf(“outBuf d= d n”, i, outBuIi); void readData() FILE*fp; int i; fp=fopen(“IN DAT”, “r”); for(i=0; iNUM; i+) fscanf(fp, “ d, ”, &inBufi); fclose(fp); void writeData()

4、 FILE*fp; int i; fp=fopen(“OUT DAT”, “W”); fprintf(fP, “count= d n”, count); for(i=0; icount; i+) fprintf(fp, “ d, n”, outBufi); felose(fp); 计算机三级网络技术机试(上机操作)模拟试卷 84答案与解析 一、程序设计题 1 【正确答案】 void findValue() int i, j, k, d4, temp, ab, cd; for(i=0; iNUM; i+) for(j=0; j4; j+) temp=inBufi ; 将要进行分解的数据存入 te

5、mp中 for(k=0; kj; k+) temp=temp 10; 求第 j位的值 d3-j=temp 10; 先将 temp除以 10的 j次方,再对其求余 即可 ab=d3*10+d0; 将个位数字和千位数字组成新数 ab cd=d1*10+d2; 将百位数字和十位数字组成新数 cd if(ab 2+cd 2=0 (ab 9=0 cd 9 =0) ab*cd!=0) 如果两新数均为偶数且至少有一个能被 9 整除,同时两数均不为零 outBufcount=inBufi; 将满足条件的数存入 outBuf中 count+; 使计数器加 1 1 for(i=0; icount-1; i+) 以

6、下是对数据进行从大到小的排序 for(j=i+1; jcount; j+) if(outBufioutBufj) temp=outBufi; outBufi=outBufj; outBufj=temp; 【试题解析】 本题考查的主要是数位分解及排序。数位分解就是将 n位数各个数位上的数位单独分离出来,将此 n位数时 10求余可以将个位上的数值分离出来;将这个 n位数除以 10以后得到一个 n-1位数,则此时 n位数原来的十位就变成了n-1位数的个位,再将此 n-1位数时 10求余便可得到原 n位数的十位。依此类推,便可将 n位数各个数位上的数值分离出来。 程序基本步骤是: 将数值送入 temp中。 由 temp 10得到个位数; (temp10) 10得到十位数,依此类推,可得到各数位上的数值。 按照题目所给的条件选筛出数据。 时选出的数据进行排序。

展开阅读全文
相关资源
猜你喜欢
  • BS PD IEC TS 62763-2013_5284 Pilot function through a control pilot circuit using PWM (pulse width modulation) and a control pilot wire《通过控制导向线使用PWM (脉冲宽度调制) 的导向功能和控制导向线》.pdf BS PD IEC TS 62763-2013_5284 Pilot function through a control pilot circuit using PWM (pulse width modulation) and a control pilot wire《通过控制导向线使用PWM (脉冲宽度调制) 的导向功能和控制导向线》.pdf
  • BS ISO 8070-2007 Milk and milk products - Determination of calcium sodium potassium and magnesium contents - Atomic absorption spectrometric method《牛奶和奶制品 钙、钠、钾和镁含量的测定 原子吸.pdf BS ISO 8070-2007 Milk and milk products - Determination of calcium sodium potassium and magnesium contents - Atomic absorption spectrometric method《牛奶和奶制品 钙、钠、钾和镁含量的测定 原子吸.pdf
  • BS ISO 8082-1-2009 Self-propelled machinery for forestry - Laboratory tests and performance requirements for roll-over protective structures - General machines《林业用自推进机械 防倾.pdf BS ISO 8082-1-2009 Self-propelled machinery for forestry - Laboratory tests and performance requirements for roll-over protective structures - General machines《林业用自推进机械 防倾.pdf
  • BS ISO 8082-2-2011 Self-propelled machinery for forestry Laboratory tests and performance requirements for roll-over protective structures Machines having a rotating platf.pdf BS ISO 8082-2-2011 Self-propelled machinery for forestry Laboratory tests and performance requirements for roll-over protective structures Machines having a rotating platf.pdf
  • BS ISO 8083-2006 Machinery for forestry - Falling-object protective structures (FOPS) - Laboratory tests and performance requirements《林业机械 落体防护装置(FOPS) 实验室试验和性能要求》.pdf BS ISO 8083-2006 Machinery for forestry - Falling-object protective structures (FOPS) - Laboratory tests and performance requirements《林业机械 落体防护装置(FOPS) 实验室试验和性能要求》.pdf
  • BS ISO 8086-2004 Dairy plant - Hygiene conditions - General guidance on inspection and sampling procedures《乳品厂 卫生条件 检验和取样程序通用指南》.pdf BS ISO 8086-2004 Dairy plant - Hygiene conditions - General guidance on inspection and sampling procedures《乳品厂 卫生条件 检验和取样程序通用指南》.pdf
  • BS ISO 8096-2005 Rubber- or plastics-coated fabrics for water resistant clothing - Specification《雨衣用橡胶或塑料涂覆织物 规范》.pdf BS ISO 8096-2005 Rubber- or plastics-coated fabrics for water resistant clothing - Specification《雨衣用橡胶或塑料涂覆织物 规范》.pdf
  • BS ISO 8097-2001 Aircraft Minimum airworthiness requirements and test conditions for certified air cargo unit load devices《航空器 经认证的航空货运集装单元装置最低适航性要求和试验条件》.pdf BS ISO 8097-2001 Aircraft Minimum airworthiness requirements and test conditions for certified air cargo unit load devices《航空器 经认证的航空货运集装单元装置最低适航性要求和试验条件》.pdf
  • BS ISO 8114-1993 Textile machinery and accessories - Spindles for ring-spinning and doubling machines - List of equivalent terms《纺织机械和附件 环锭纺纱机和并线机用锭子 同义术语表》.pdf BS ISO 8114-1993 Textile machinery and accessories - Spindles for ring-spinning and doubling machines - List of equivalent terms《纺织机械和附件 环锭纺纱机和并线机用锭子 同义术语表》.pdf
  • 相关搜索

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

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