首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
递归函数f(n)的功能是计算1+2+…+n,且n≥1,则f(n)的代码段是(49)。
递归函数f(n)的功能是计算1+2+…+n,且n≥1,则f(n)的代码段是(49)。
admin
2009-05-15
58
问题
递归函数f(n)的功能是计算1+2+…+n,且n≥1,则f(n)的代码段是(49)。
选项
A、if n>1 then return 1 else return n+f(n-1)
B、if n>1 then return 1 else return n+f(n+1)
C、if n>1 then return 0 else return n+f(n+1)
D、if n<1 then return 0 else return n+f(n-1)
答案
D
解析
根据题意,当n<1时结束递归,函数返回0,否则返回n+f(n-1)进行递归运算。
转载请注明原文地址:https://jikaoti.com/ti/ocW7FFFM
本试题收录于:
程序员上午基础知识考试题库软考初级分类
0
程序员上午基础知识考试
软考初级
相关试题推荐
DNS的主要功能是什么,DNS解析域名的方式有哪些?顶级域名中,edu和com一般应用于什么组织?
阅读下列说明。[说明]某公司用ASP+Access数据库开发了库存查询系统,该系统用户登录界面如图5·1所示:该系统采用B/S三层结构,请根据B/S三层结构的工作过程,完成如图5-2所示:(A)Web服务器(B)数据库(C)浏
The term“(67)program”means a program written in high-level language.
(70):A graphical bar With buttons that perform some of the most common commands.
(73)is the sending and receiving of the message by computer. It is a fast, low-cost way of communicating worldwide。
During the last few years ,it has been realized that maintenance of programs is more expensive than development, so reading of p
The major problem with E-mail is that it is(71)easy to use that people can become(72)with messages(73)they can possibly answer i
The Programming languages are designed to(74)the communication between human and computers.
MostIPlayer-basedproxymechanisms,suchasnetworkaddresstranslation(NAT),onlysupportuni-directionalproxy,fromtheintern
when a string constant is written in C program, the eompiler creates(75)of characters containing the characters of the string, a
随机试题
患儿女,6岁。晚饭后突然出现喘憋,大汗,烦躁不安,不能平卧,该患儿在幼年时曾两次患毛细支气管炎。查体:痛苦面容,呼气性呼吸困难,两肺闻及哮鸣音,体温正常。下列治疗措施,哪一项应慎用或禁用
关于植皮术的叙述,错误的是
故障树分析是系统安全工程中的重要的分析方法之一,它是()描述事故发生的有方向的逻辑。
下列经济业务中,能够使企业资产总额减少的是()。
为了旅游者情绪高、游兴浓、精力充沛地投入旅游活动,达到预期的旅游目的,导游人员要努力使自己成为旅游者情绪的()。
中国古代建筑以石结构为主,并辅以砖瓦。()
党的十八大报告提出,建设社会主义文化强国,关键是()
某日20时许,居住在某居民楼202室的张某报警称因楼上302室于某家漏水,双方发生纠纷。民警赶到现场了解情况,于某一再辩称不是他家漏水,可能是303室漏水。此时民警不宜采取的做法是()。
设Mo是直线L外的一点,M是直线上的任意一点,且直线L的方向向量为s,证明:Mo到直
Text…DramaticPeakDistrict,withitsgenuinesteepfells,neverfailstoastonishme.Acarwill【C1】______youallround
最新回复
(
0
)