[计算机类试卷]国家三级(网络技术)机试模拟试卷24及答案与解析.doc

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

1、国家三级(网络技术)机试模拟试卷 24及答案与解析 一、程序设计题 1 已知数据文件 IN24.DAT中存有 300个 4位数,并已调用读函数 readDat()把这些数存入数组 a中。请编制函数 jsValue(),其功能是:求出千位数上的数加个位数上的数等于百位数上的数加十位数上的数的个数 cnt,再把所有满足此条件的 4位数依次存入数组 b中,然后对数组 b的 4位数按从小到大的顺序进行排序,最后调用写函数 writeDat()把数组 b中的数输出到 OUT24.DAT文件中。 例如: 6712, 6+2 7+1,则该数满 足条件,存入数组 b中,且个数 cnt=cnt+1。 8129,

2、 8+91+2,则该数不满足条件,忽略。 注意:部分源程序已给出。 程序中已定义数组: a300, b300,已定义变量: cnt。 请勿改动主函数 main()、读函数 readDat()和写函数 writeDat()的内容。 试题程序: #include stdio.h int a300, b300, cnt=0; void jsValue() main ( ) int i; readDat (); jsValue (); writeDat (); printf(“cnt=%dn“, cnt); for(i=0; i cnt; i+) printf(“b%d=%dn“, i, bi); r

3、eadDat ( ) FILE *fp; int i; fp = fopen(“IN24.DAT“, “r“); for(i=0; i 300; i+) fscanf(fp, “%d,“, fclose (fp); writeDat () FILE *fp; int i; fp = fopen(“OUT24.DAT“, “w“); fprintf (fp, “%dn“,cnt); for(i=0; i cnt; i+) fprintf (fp, “%d, n“, b i ); fclose (fp); 国家三级(网络技术)机试模拟试卷 24答案与解析 一、程序设计题 1 【正确答案】 void

4、 jsValue() int i, thou, hun, ten, data,j; for(i=0;i 300;i+) thou=ai/1000; /*求四位数的千位数字 */ hun=ai%1000/100; /*求四位数的百位数字 */ ten=ai%100/10; /*求四位数的十位数字 */ data=ai%10; /*求四位数的个位数字 */ if(thou+data=hun+ten) /*如果千位数加个位数等于百位数加十位数 */ bcnt=ai; /*将满足条件的数存入数组 b中 */ cnt+; /*统计满足条件的数的个数 cnt*/ for(i=0; i cnt-1;i+)

5、/*用选择法对数组 b的 4位数按从小到大的顺序进行排序 */ for(j=i+1;j cnt;j+) if (b ib j ) data=bi; bi=bj; b j=data; 【试题解析】 根据题意可知,函数 jsValue()将实现两个功能:一是找出满足条件的那些数,并存放在数组 b中;二是对数组 b中的数进行从小到大的排序。首先来实现找出 “千位数上的数加上个位数上的数等于百位数上的数加上十位数上的数 ”的 4位数的功能。利用一个 for循环来不断从数组 a中取出 4位数,并对取出的数进行条件判断。由于这里涉及到要对 4位数的 每一位进行判断,因此,“thou=ai/1000; hun=ai%1000/100; ten=ai%100/10; data=ai%10; ”这 4条语句就可以得到当前被判断的 4位数的千位数、百位数、十位数及个位数。之后,执行条件判断语句 “if(thou+data=hun+ten)”,并把满足条件的 4位数放到数组 b中。用变量 cnt来统计满足条件的数的个数。将所有满足条件的数取出后利用选择法对其进行排序,即用当前元素依次和它后面的元素进行比较,发现有小于该数的,这两数就进行交换。最终数组 b的元素就是 有序存放的。

展开阅读全文
相关资源
猜你喜欢
  • 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