【计算机类职业资格】计算机三级(数据库技术)上机考试26及答案解析.doc

上传人:towelfact221 文档编号:1337298 上传时间:2019-10-17 格式:DOC 页数:2 大小:26KB
下载 相关 举报
【计算机类职业资格】计算机三级(数据库技术)上机考试26及答案解析.doc_第1页
第1页 / 共2页
【计算机类职业资格】计算机三级(数据库技术)上机考试26及答案解析.doc_第2页
第2页 / 共2页
亲,该文档总共2页,全部预览完了,如果喜欢就下载吧!
资源描述

1、计算机三级(数据库技术)上机考试 26 及答案解析(总分:-1.00,做题时间:90 分钟)1.编写函数 jsValue(),它的功能是求 Fibonacci 数列中大于 t 的最小的一个数,结果由函数返回,其中Fibonacci 数列 F(n)的定义为: F(0)=0,F(1)=1 F(n)=F(n-1)+F(n-2) 最后调用函数 writeDat(),把结果输出到文件 OUT10.DAT 中。 例如:当 t = 1000 时,函数值为 1597。 注意:部分源程序已给出。 请勿改动主函数 main()和写函数 WriteDat()的内容。 试题程序: #include int jsVal

2、ue(int t) main() int n; n=1000; printf(“n=%d, f=%dn“, n, jsValue(n); writeDat(); writeDat() FILE *in, *out; int n,s; out = fopen(“OUT10.DAT“, “w“); s = jsValue(1000); printf(“%d“,s); fprintf(out, “%dn“, s); fclose(out); (分数:-1.00)_计算机三级(数据库技术)上机考试 26 答案解析(总分:-1.00,做题时间:90 分钟)1.编写函数 jsValue(),它的功能是求

3、Fibonacci 数列中大于 t 的最小的一个数,结果由函数返回,其中Fibonacci 数列 F(n)的定义为: F(0)=0,F(1)=1 F(n)=F(n-1)+F(n-2) 最后调用函数 writeDat(),把结果输出到文件 OUT10.DAT 中。 例如:当 t = 1000 时,函数值为 1597。 注意:部分源程序已给出。 请勿改动主函数 main()和写函数 WriteDat()的内容。 试题程序: #include int jsValue(int t) main() int n; n=1000; printf(“n=%d, f=%dn“, n, jsValue(n); w

4、riteDat(); writeDat() FILE *in, *out; int n,s; out = fopen(“OUT10.DAT“, “w“); s = jsValue(1000); printf(“%d“,s); fprintf(out, “%dn“, s); fclose(out); (分数:-1.00)_正确答案:(int jsValue(int t) int f1=0,f2=1,fn; fn=f1+f2; while(fn=t) f1=f2;f2=fn;fn=f1+f2; /*如果当前的 Fibonacci 数不大于 t,则计算下一个 Fibonacci 数*/ return

5、 fn; /*返回 Fibonacci 数列中大于 t 的最小的一个数*/ )解析:解答本题的关键是要充分理解题意,只有理解了题意本身的数学过程,才能把数学过程转化为程序逻辑。根据已知数列,我们不难发现:Fibonacci 数列中,从第三项开始,每一项都可以拆分为前两项之和。本题要求找到该数列中“大于 t 的最小的一个数”。这里可以借助一个 while 循环来依次取数列中的数,直到出现某一项的值大于 t,那么这一项就是“大于 t 的最小的一个数”。注意:在循环体内部,我们用变量 f1 始终来表示第 n 项的前面第二项,用变量 f2 来始终表示第 n 项的前面第一项。这就实现了变量的活用与巧用。

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