[计算机类试卷]国家三级(数据库技术)机试模拟试卷10及答案与解析.doc

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

1、国家三级(数据库技术)机试模拟试卷 10及答案与解析 一、程序设计题 1 编写函数 jsValue(),它的功能是求 Pibonacci数列中大于 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 (

2、 ) 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); 国家三级(数据库技术)机试模拟试卷 10答案与解析 一、程序设计题 1 【正确答案】 int jsValue(int t) int f1=0, f2=1, fn; fn=f1+f2; wh

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

展开阅读全文
相关资源
猜你喜欢
  • BS PD CEN TR 16721-2014 Bio-based products Overview of methods to determine the bio-based content《生物基质产品 生物基质含量的测定方法概述》.pdf BS PD CEN TR 16721-2014 Bio-based products Overview of methods to determine the bio-based content《生物基质产品 生物基质含量的测定方法概述》.pdf
  • BS PD CEN TR 16741-2015 Textiles and textile products Guidance on health and environmental issues related to chemical content of textile products intended for clothing int.pdf BS PD CEN TR 16741-2015 Textiles and textile products Guidance on health and environmental issues related to chemical content of textile products intended for clothing int.pdf
  • BS PD CEN TR 16742-2014 Intelligent transport systems Privacy aspects in ITS standards and systems in Europe《智能运输系统 欧洲智能运输系统标准和体系的隐私问题》.pdf BS PD CEN TR 16742-2014 Intelligent transport systems Privacy aspects in ITS standards and systems in Europe《智能运输系统 欧洲智能运输系统标准和体系的隐私问题》.pdf
  • BS PD CEN TR 16748-2014 Aluminium and aluminium alloys Mechanical potential of Al-Si alloys for high pressure low pressure and gravity die casting《铝和铝合金 高压 低压和重力铸造铝硅合金的力学潜.pdf BS PD CEN TR 16748-2014 Aluminium and aluminium alloys Mechanical potential of Al-Si alloys for high pressure low pressure and gravity die casting《铝和铝合金 高压 低压和重力铸造铝硅合金的力学潜.pdf
  • BS PD CEN TR 16749-2014 Aluminium and aluminium alloys Classification of Defects and Imperfections in High Pressure Low Pressure and Gravity Die Cast Products《铝和铝合金 高压 低压以.pdf BS PD CEN TR 16749-2014 Aluminium and aluminium alloys Classification of Defects and Imperfections in High Pressure Low Pressure and Gravity Die Cast Products《铝和铝合金 高压 低压以.pdf
  • BS PD CEN TR 16787-2014 Industrial Gas Installation Guideline《工业气体装置 指南》.pdf BS PD CEN TR 16787-2014 Industrial Gas Installation Guideline《工业气体装置 指南》.pdf
  • BS PD CEN TR 16788-2014 Characterization of sludges Guideline of good practice for thermal processes《污泥的特性描述 热工过程的良好实践指南》.pdf BS PD CEN TR 16788-2014 Characterization of sludges Guideline of good practice for thermal processes《污泥的特性描述 热工过程的良好实践指南》.pdf
  • BS PD CEN TR 16792-2014 Safety of children's clothing Recommendations for the design and manufacture of children's clothing Mechanical safety《儿童服装安全 儿童服装的设计和生产建议 机械安全》.pdf BS PD CEN TR 16792-2014 Safety of children's clothing Recommendations for the design and manufacture of children's clothing Mechanical safety《儿童服装安全 儿童服装的设计和生产建议 机械安全》.pdf
  • BS PD CEN TR 16793-2016 Guide for the selection application and use of flame arresters《灭火器的选择 应用和使用指南》.pdf BS PD CEN TR 16793-2016 Guide for the selection application and use of flame arresters《灭火器的选择 应用和使用指南》.pdf
  • 相关搜索

    当前位置:首页 > 考试资料 > 职业资格

    copyright@ 2008-2019 麦多课文库(www.mydoc123.com)网站版权所有
    备案/许可证编号:苏ICP备17064731号-1