首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #inc1ude<iostream> using namespace std; void function2(int n); void functionl(int n){ if(n<=0)return;
有如下程序: #inc1ude<iostream> using namespace std; void function2(int n); void functionl(int n){ if(n<=0)return;
admin
2019-06-12
43
问题
有如下程序:
#inc1ude<iostream>
using namespace std;
void function2(int n);
void functionl(int n){
if(n<=0)return;
function2(n一2);
}
void function2 (int n){
if(n<=0) return;
functionl(n一1);
}
int main(){
functionl(5);
return 0:
}
下列关于程序运行情况的描述中,正确的是( )。
选项
A、functionl运行1次,function2运行2次
B、functionl运行2次,function2运行1次
C、functionl运行2次,function2运行3次
D、functionl运行2次,function2运行2次
答案
D
解析
在土函数中执行functionl(5)时,会调用function2(3),function2(3)又会调用functionl(2),functionl(2)又会调用function2(0),到此相互调用结束。所以functionl()和function20各执行了2次。
转载请注明原文地址:https://kaotiyun.com/show/oH8p777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
下列程序的输出结果为2,横线处应添加语句()。#includeusingnamespacestd;classTestClass1{public:_________
若有如下程序:#includeusingnamespacestd;ints=0:classsample{staticintn:public:sample(inti)
下列情况中,不会调用拷贝构造函数的是()。
有如下程序:#includeusingnamespacestd;classTest{public:Test(){n+=2;}~Test(){n-=3;)staticimge
有如下程序:#includeusingnamespacestd;classA{public:A(){cout
有如下程序: #include<iostream> using namespace std; class Complex { double re,im; public: Complex(double r,doubl
内联函数是通过【】来实现的,因此内联函数是真正的函数。
对于派生类的构造函数,在定义对象时构造函数的执行顺序:先执行调用______的构造函数,再执行调用子对象类的构造函数,最后执行派生类的构造函数体中的内容。
下列语句中,错误的是()。
对虚函数的调用有两种方式:【】和【】。
随机试题
津液在体内流注输布的通道是
《本经逢原》谓“能透诸窍藏。辟一切不正之气”的药物是
枕先露的指示点是臀先露的指示点是
牙槽骨修整的最佳时间为拔牙后
测定界址及确定产权界线是保证地籍测量()的手段。
下列资产中,属于流动资产的项目有()。[2015年10月真题]
Itisoftenobservedthattheagedspendmuchtimethinkingandtalkingabouttheirpastlives,(1)_____aboutthefuture.These
Therehavebeenrumors.There’sbeengossip.AllHollywoodisshockedtolearnthatCalistaFlockhart,starofFox’shitTVshow
Listeningoutforwhalesongisonewaythatshipscanavoidcollidingwithwhales.Butwhatdoyoudoifthewhalesaren’tsing
A、Scholarscangetprivategrantswithoutapplication.B、Scholarsstarttowriteapaperwhendoingtheirresearch.C、Scholars’
最新回复
(
0
)