【计算机类职业资格】二级C语言-98及答案解析.doc

上传人:花仙子 文档编号:1325476 上传时间:2019-10-17 格式:DOC 页数:5 大小:31.50KB
下载 相关 举报
【计算机类职业资格】二级C语言-98及答案解析.doc_第1页
第1页 / 共5页
【计算机类职业资格】二级C语言-98及答案解析.doc_第2页
第2页 / 共5页
【计算机类职业资格】二级C语言-98及答案解析.doc_第3页
第3页 / 共5页
【计算机类职业资格】二级C语言-98及答案解析.doc_第4页
第4页 / 共5页
【计算机类职业资格】二级C语言-98及答案解析.doc_第5页
第5页 / 共5页
亲,该文档总共5页,全部预览完了,如果喜欢就下载吧!
资源描述

1、二级 C 语言-98 及答案解析(总分:100.00,做题时间:90 分钟)一、程序填空题(总题数:1,分数:30.00)1.给定程序中,函数 fun 的功能是将 a 和 b 所指的两个字符串分别转换成面值相同的整数,并进行相加作为函数值返回,规定字符串中只含 9 个以下数字字符。 例如,主函数中输入字符串 32486 和 12345,在主函数中输出的函数值为 44831。 请在程序的下划线处填入正确的内容并把下划线删除,使程序得出正确的结果。 注意:源程序存放在考生文件夹下的 BLANK1.C 中。 不得增行或删行,也不得更改程序的结构! 给定源程序如下。 #includestdio.h #

2、includestring.h #includectype.h #define N 9 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 printtf“Input string s1:“);gets(s1); while(strlen(s1)N); do printf(“Input string s2:

3、);gets(s2); while(strlen(s2)N); printf(“The result is:%ld/n“,fun(s1,s2); (分数:30.00)二、程序改错题(总题数:1,分数:30.00)2.给定程序 MODI1.C 中 fun 函数的功能是分别统计字符串中大写字母和小写字母的个数。 例如,给字符串 s 输入 AAaaBBb123CCccccd,则应输出结果为 upper=6,lower=8。 请改正程序中的错误,使它能计算出正确的结果。 注意:不要改动 main 函数,不得增行或删行,也不得更改程序的结构! 给定源程序如下。 #includestdio.h /*fo

4、und*/ void fun(char *s,int a,int b) while(*s) if(*s=“A“ if(*s=“a“ s+; main() char s100;int upper=0,lower=0; printf(“/nPlease a string:“);gets(s); fun(s, printf(“/n upper=%d lower=%d/n“,upper,lower); (分数:30.00)三、程序设计题(总题数:1,分数:40.00)3.请编一个函数 fun,函数的功能是使实型数保留 2 位小数,并对第三位进行四舍五入(规定实型数为正数)。 例如:实型数为 1234.

5、567,则函数返回 1234.570000; 实型数为 1234.564,则函数返回 1234.560000。 注意:部分源程序存在文件 PROG1.C 中。 请勿改动主函数 main 和其他函数中的任何内容,仅在函数 fun 的花括号中填入编写的若干语句。 给定源程序如下。 #includestdio.h float fun(float h) main() float a; printf(“Enter a:“);scanf(“%f“, printf(“The original data is:“); printf(“%f/n/n“,a); printf(“The result:%f/n“,f

6、un(a); (分数:40.00)_二级 C 语言-98 答案解析(总分:100.00,做题时间:90 分钟)一、程序填空题(总题数:1,分数:30.00)1.给定程序中,函数 fun 的功能是将 a 和 b 所指的两个字符串分别转换成面值相同的整数,并进行相加作为函数值返回,规定字符串中只含 9 个以下数字字符。 例如,主函数中输入字符串 32486 和 12345,在主函数中输出的函数值为 44831。 请在程序的下划线处填入正确的内容并把下划线删除,使程序得出正确的结果。 注意:源程序存放在考生文件夹下的 BLANK1.C 中。 不得增行或删行,也不得更改程序的结构! 给定源程序如下。

7、includestdio.h #includestring.h #includectype.h #define N 9 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 printtf“Input string s1:“);gets(s1); while(strlen(s1)N); do printf(

8、Input string s2:“);gets(s2); while(strlen(s2)N); printf(“The result is:%ld/n“,fun(s1,s2); (分数:30.00)解析:“0“ s+或+s ctod(a)+ctod(b) 解析 填空 1:isdigt(*s)这个函数表示检查*s 是否是数字(09),d=d*10+s-?表示的是要把字符串分别转换成面值相同的整数,因此本空应该填写“0“。 填空 2:由填空*s 所代表的字符串中字符需要一个一个的字符进行转换成整数,因此此空应该填写 s+或+s。 填空 3:题目要求把转换后的字符进行相加后作为函数的返回值,因此

9、本空应该填写 ctod(a)+ctod(b)。二、程序改错题(总题数:1,分数:30.00)2.给定程序 MODI1.C 中 fun 函数的功能是分别统计字符串中大写字母和小写字母的个数。 例如,给字符串 s 输入 AAaaBBb123CCccccd,则应输出结果为 upper=6,lower=8。 请改正程序中的错误,使它能计算出正确的结果。 注意:不要改动 main 函数,不得增行或删行,也不得更改程序的结构! 给定源程序如下。 #includestdio.h /*found*/ void fun(char *s,int a,int b) while(*s) if(*s=“A“ if(*s

10、a“ s+; main() char s100;int upper=0,lower=0; printf(“/nPlease a string:“);gets(s); fun(s, printf(“/n upper=%d lower=%d/n“,upper,lower); (分数:30.00)解析:void fun(char*s,int*a,int*b) *a=*a+1; *b=*b+1; 解析 由主函数中调用 fun 函数的语句 fun(s, printf(“Enter a:“);scanf(“%f“, printf(“The original data is:“); printf(“%f/n/n“,a); printf(“The result:%f/n“,fun(a); (分数:40.00)_正确答案:()解析:float fun(float h) long t; t=(h * 1000+5)/10; return (float)t/100; 解析 注意:本题要求 h 的值真正进行四舍五入运算,而不是为了输出,即不能用 printf(“%7.2f“,h)来直接得到结果。

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