[计算机类试卷]国家二级C语言机试(操作题)模拟试卷444及答案与解析.doc

上传人:figureissue185 文档编号:498395 上传时间:2018-11-29 格式:DOC 页数:5 大小:33KB
下载 相关 举报
[计算机类试卷]国家二级C语言机试(操作题)模拟试卷444及答案与解析.doc_第1页
第1页 / 共5页
[计算机类试卷]国家二级C语言机试(操作题)模拟试卷444及答案与解析.doc_第2页
第2页 / 共5页
[计算机类试卷]国家二级C语言机试(操作题)模拟试卷444及答案与解析.doc_第3页
第3页 / 共5页
[计算机类试卷]国家二级C语言机试(操作题)模拟试卷444及答案与解析.doc_第4页
第4页 / 共5页
[计算机类试卷]国家二级C语言机试(操作题)模拟试卷444及答案与解析.doc_第5页
第5页 / 共5页
亲,该文档总共5页,全部预览完了,如果喜欢就下载吧!
资源描述

1、国家二级 C语言机试(操作题)模拟试卷 444及答案与解析 一、程序填空题 1 下列给定程序中,函数 fun的功能是计算下式 直到 10一 3,并将计算结果作为函数值返回。 例如,若形参 e的值为 le 一3,函数的返回值为 2 985678。 请在程序的下画线处填入正确的内容并将下画线删除,使程序得出正确的结果。 注意:部分源程序给出如下。 不得增行或删行,也不得更改程序的结构! 试题程序: #include stdio h double fun(double e) int i; double s, x; /*found*/ s=o; i=【 1】; x=1 0; while(x e)/*f

2、ound*/ 【 2】; /*found*/ x=(2 0, *i一 1)/(【 3】 ), *(2 0 * i); s=s+x; Eeturn s; main()double e=1 e一 3; print: f(“nThe result is: fn“, fun(e); 二、程序修改题 2 下列给定程序中函数 fun的功能是 :将 s所指字符串的正序和反序进行连接,形成的新串放在 t所指的数组中。 例如,当 s所指字符串为 “ABCD”时, t所指字符串中的内容应为“ABCDDCBA”。 请改正程序中的错误,使它能得出正确的结果。 注意:不要改动 main函数,不得增行或删行,也不得更改程

3、序的结构 ! 试题程序: #include conio h #include stdio h #include string h /*found*/ void fun(char s, char t) int i , d; d=Str1en(s); for(i=0; i d; i+) ti=si; for(i=0; i d; i+) td+i=sd一 1一 i; /*found*/ t2*d一 1=0; main() char s100, t100; printf(“inPlease enter string s: “); scanf(“ s“, s); fun(s, t); printf(“n

4、Tbe result is: skn“, t); 三、程序设计题 3 编写函数 fun,其功能是:将 S所指字符串中除了下标为奇数同时 ASCII码值也为奇数的字符之外,其余的所有字符全部删除,串中剩余字符所形成的一个新串放在 t所指的数组中。 例如,若 S所指字符串的内容为 “ABCDEFGl2345”,其中字符 A的 ASCII码值为奇数,但所在元素的下标为偶数,因此需要删除;而字符 1的 ASCII码值为奇数,所在数组中的下标也为奇数,因此不应当删除,其他依此类推。最后 t所指数组中的内容应为 “135”。 注意:部分源程序给出如下。 请勿改动主函数 main和其他函数中的任何内容,仅在

5、函数 fun的花括号中填入你编写的若干语句。 试题程序: #include conio h #include stdio h #include string h void fun(char * s, char t) msin() char s100, t100; printf(“inPlease enter string s: “); Scanf(“ s“, s); fun(s, t); printf(“knThe result is: sn“, t); 国家二级 C语言机试(操作题)模拟试卷 444答案与解析 一、程序填空题 1 【正确答案】 (1)0 (2)i+或 +i或 i+=1或 i=

6、i+l (3)2 0*i 【试题解析】 填空 1:循环变量 i从 1开始参加运算,但是在每次循环的开始 i都进行自加 1操作,故 i应赋初值为 0。 填空 2:循环变量 i自增 1运算。 填空 3:根据公式确定表达式通项。注意 x为 double型,故应将 i变为 double型再进行运算。 二、程序修改题 2 【正确答案】 (1) void fun(char *s,char*t) (2)t2*d=0;或 td+i=0;或 t2*d=0;或 td+i=0; 【试题解析】 (1)从调用函数来看,函数传递的是 数组,所以函数的形参应为指针。 (2)循环结束后回文字符的个数为 2*d个,因为数组下标

7、是从 0开始的,所以最后一个字符的下标为 2*d一 1,在最后一个字符的后面加上结束符 0,因此为t2*d=0;。 三、程序设计题 3 【正确答案】 void fun (char*s,char t) int i,j =0,n; n= str1en (s); for( i=0; i n; i+) if(i 2)&(si 2) tj+=si; /*将下标为奇数同时 ASCII码值为奇数 的字符放入数组 t中 */ tj=0; /*最后加上结束标识符 */ 【试题解析】 本题要求除了下标为奇数同时 ASCII码值也为奇数的字符,其余的所有字符都删除,即要留下下标为奇数同时 ASCII码值也为奇数的字符。所以if的条件语句应为: if(i 2 1=0&si 2!=0)。

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