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

上传人:orderah291 文档编号:498632 上传时间:2018-11-29 格式:DOC 页数:6 大小:30KB
下载 相关 举报
[计算机类试卷]国家二级C语言机试(操作题)模拟试卷658及答案与解析.doc_第1页
第1页 / 共6页
[计算机类试卷]国家二级C语言机试(操作题)模拟试卷658及答案与解析.doc_第2页
第2页 / 共6页
[计算机类试卷]国家二级C语言机试(操作题)模拟试卷658及答案与解析.doc_第3页
第3页 / 共6页
[计算机类试卷]国家二级C语言机试(操作题)模拟试卷658及答案与解析.doc_第4页
第4页 / 共6页
[计算机类试卷]国家二级C语言机试(操作题)模拟试卷658及答案与解析.doc_第5页
第5页 / 共6页
点击查看更多>>
资源描述

1、国家二级 C语言机试(操作题)模拟试卷 658及答案与解析 一、程序填空题 1 使用 VC+2010打开考生文件夹下 blank1中的解决方案。此解决方案的项目中包含一个源程序文件 blank1 c。在此程序中,函数 fun的功能是将 a和 b所指的两个字符串分别转换成面值相同的整数,并进行相加作为函数值返回,规定字符串中只含 9个以下数字字符。 例如,主函数中输入字符串 “32486“和 “12345“,在主函数中输出的函数值为44831。 请在程序的下画线处填入正确的内容并把下画线删除,使程序得出正确的结果。 注意: 部分源程序在文件 BLANK1 C中。不得增行或删行,也不得更改程序的结

2、构 ! 试题程序: #include stdio h #include string h #include ctype h #define N9 long ctod(char*s) long d=0; while(*s) if(isdigit(*s) *found* d=d*10+*s-【 1】 ; *found* 【 2】 ; return d; long fun(char*a, char, *b) *found* return【 3】 ; main() char s1N, s2N; do printf(“Input string s1: “); gets(s1); ) while(strl

3、en(s1) N); do printf(“Input string s2: “); gets(s2); while(Strlen(s2) N); printf(“The result is: id n“, fun(s1, s2); 二、程序修改题 2 使用 VC+2010打开考生文件夹下 modi1中的解决方案。此解决方案的项目中包含一个源程序文件 modi1 c。在此程序的主函数中,从键盘输入若干个数放人数组中,用 0结束输入并放在最后一个元素中。下列给定程序中,函数 fun的功能是:计算数组元素中所有值为正数的平均值 (不包括 0)。 例如,数组中元素的值依次为: 39、 -47、 21

4、 2、 -8、 15、 0,则程序的运行结果为 19 250000。 请改正程序中的错误,使它能得出正确的结果。 注意:不要改动 main函数,不得增行或删行,也 不得更改程序的结构 ! 试题程序: #include conio h #include stdio h double fun(int x) *found* int sum=0 0; int c=0, i=0; while(xi!=0) if(xi 0) sum+=Xi; c+; ) i+; *found* sum =c; return sum; main() int xi000; int i=0; printf(“ nPlease

5、 enter some dat a(end with0): “); do scanf(“ d“, &xi); while(xi+!=0); printf(“ lf n“, fun(x); 三、程序设计题 3 使用 VC+2010打开考生文件夹下 prog1中的解决方案。此解决方案的项目中包含一个源程序文件 prog1 c。在此程序中,编写函数 fun,该函数的功能是:统计一行字符串中单词的个数,作为函数值返回。字符串在主函数中输入,规定所有单词由小写字母组成,单词之间有若干个空格隔开,一行的开始没有空格。 注意:部分源程序在文件 PROG1 C中。 请勿改动 main函数和其他函数中的任何内容

6、仅在函数 fun的花括号中填入所编写的若干语句。 试题程序: #include string h #include stdio h #define N80 int fun(char*s) void main() FILE*wf; char lineN; int mum=0; printf(“Enter a string: n“); gets(line); mum=fun(line); printf(“The number of word is: d n n“, num); *found* wf=fopen(“out dat“, “w“); fprintf(wf, “ d“, fun(“a b

7、ig car“); fclose(wf); *found* 国家二级 C语言机试(操作题)模拟试卷 658答案与解析 一、程序填空题 1 【正确答案】 (1)0 (2)s+或 +s (3)ctod(a)+ctod(b) 【试题解析】 填空 1: isdigt(*s)这个函数表示检查 *s是否是数字 (0 9),d=d*10+*s-?表示的是要把字符串分别转换成面值相同的整数,因此本空应该填写0。 填空 2: *s所代表的字符串中字符需要一个一 个 的字符进行转换成整数,因此此空应该填写 s+或 +s。 填空 3:题目要求把转换后的字符进行相加后作为函数的返回值,因此本空应该填写 ctod(a)

8、ctod(b)。 二、程序修改题 2 【正确答案】 (1)double sum=0 0; (2)sum =c; 【试题解析】 (1)变量定义错误,变量 sum存放所有数据的和,应定义为 double型。 (2)C语言中的除法运算符是 “ ”。 三、程序设计题 3 【正确答案】 int fun(char*=s) int i, j=0; for(i=0; si!= 0; i+) if(si!= &(si+1= |si+1= 0) *如果一个字母的下一个字符为空格或者结束标记,则表示一个单词结束 *| j+; return j; *返回单词个数 * 【试题解析】 要判断单词的个数,首先想到的是程序怎样识别出一个单词,如果一个字母的下一个字符为空格或者结束标记,则表示一个单词结束,因此程序使用 for循环语句遍历整个字符串,用 if条件语句判断当前字符是否表示一个单词的结束,如果当前字符表示一个单词结束,则存放 单词个数的变量加 1,最后返回单词的个数。

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