首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #inc1ude <iostream> using namespace std; class Sample { friend long fun (Sample s); public: S
有如下程序: #inc1ude <iostream> using namespace std; class Sample { friend long fun (Sample s); public: S
admin
2020-04-07
31
问题
有如下程序:
#inc1ude <iostream>
using namespace std;
class Sample
{
friend long fun (Sample s);
public:
Sample (long a){x=a;}
pnvate:
long x;
};
long fun (Sample s)
{
if (s.x<2) retum l:
return s.x*fun(Sample(s.x一l)):
}
int main()
{
int sum=0;
for(int i=0; k6; 1++) {sum+=fun(Sample(i));}
cout<<sum,
return 0;
}
运行时输出的结果是( )。
选项
A、120
B、16
C、154
D、34
答案
C
解析
此题考查的是友元函数和递归函数。因为fun函数是Sample类的友元函数,所以fun函数可以直接访问Sample类对象的私有成员x。主函数调用fun函数,构造参数为0~5。当n小于2时,fun函数返回1,其余返回值为n*fun(n一1)。n取0—5的值时fun(n)依次为1,l,2,6,24,120,累加结果为154。
转载请注明原文地址:https://jikaoti.com/ti/glA0FFFM
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
下列程序的输出结果是______。#include<iostream.h>classbase{intx,y;public:base(inti,intj){x=i;y=j;}
有以下程序 main(int argc, chara*argv[]) { int n,i=0; while(argv[1][i]! =’\0’) { n=fun();i++;} cout<<n*argc<<endl;
假定MyClass为一个类,那么下列的函数说明中,()为该类的析构函数。
若执行下面的程序时,从键盘上输入5和2,则输出结果是()。include(iostream.h)voidmain(){inta,b,k;cin>>a>>b;k=a;if(a<B)k=a%b;
下面是一个递归函数,其功能是使数组中的元素反序排列,请将函数补充完整。voidreverse(int*a,intsize){if(size<2)return;intk=a[0];a[0]=a[size-1
在设计程序时,应采纳的原则之一是
下列叙述中正确的是
下述说法错误的是
C++目标程序经【】后生成扩展名为exe的可执行程序文件。
若有char*x[2]={"xyzw","XYZW"};则下面的表述正确的是______。
随机试题
下列有关分期付息的平息债券,说法正确的有()。
根据《刑事诉讼法》的规定,下列不属于中级人民法院管辖的第一审刑事案件是()。
下列有关刑事诉讼中回避制度的表述,正确的是()。
Ofallthelessonstaughtbythefinancialcrisis,themostpersonalhasbeenthatAmericansaren’tsogoodatmoney-management.
LastnightIwassotiredthatIforgotto______mywatchanditstoppedattwelve.
ReconstructingAncientEnvironmentsP1:Archaeologyisparticularlyimportantforlearningaboutprehistoricsocieties,forwhom
Takingondebtisoneofthemostimportanteconomicdecisionsapersoncanmake.Borrowingtoinvestineducationcanyieldal
Withwhomdidthespeakergotobuythecar?Hewentwith______.
Itwasverykind______tohelpmewhenIwasinneed.
A、Toidentifykindsofhoney.B、Toidentifyrelatives.C、Tofindtheirwaybacktothenest.D、Tolocateplantfibers.B选项均以不定式开
最新回复
(
0
)