首页
试卷库
试题库
当前位置:
X题卡
>
所有题目
>
题目详情
以下程序执行结果是 ( )。 #include <iostream.h> class Base public virtual void fun( ) cout<<"B"; ;...
查看本题答案
包含此试题的试卷
计算机等级考试《单项选择》真题及答案
点击查看
你可能感兴趣的试题
有以下程序#include<iostream>#include<string>usxngnamesp
8
12
5
7
以下程序的执行结果是______ #include<iostream.h> #include<i
有如下的程序 #include<iostream> #include<fstream> usi
以下程序的执行结果是______#include<iostream.h>#include<fstre
以下程序的执行结果是_____ #include<iostream.h> #include<io
若有以下程序 #include<iostream> usingnamespacestd int
若有以下程序#include<iostream>usingnamespacestdintmain{i
-6
12
-12
以下程序的执行结果是________#include<iostream.h>#include<iom
以下程序的执行结果是______#include<iostream.h>#include<ioman
以下程序的执行结果是________ #include<iostream.h> #include
有如下的程序#include<iostream>#include<fstream>usingname
以下程序的执行结果是______ #include<iostream.h> #include<f
以下程序的执行结果是_____#include<iostream.h>#include<iomani
以下程序的执行结果是_______#include<iostream.h>#include<fstr
以下程序的执行结果是______#include<iostream.h>#include<ioman
以下程序的执行结果是_______ #include<iostream.h> #include<
以下程序的执行结果是______ #include<iostream.h> #include<i
以下程序的执行结果是【15】 #include<iostream.h> #include<fst
有以下程序#include<iostream.h>#include<iomanip.h>voidma
****123.45
**123.45**
123.45****
***123.45*
有以下程序#include<iostream.h>#include<iomanip.h>voidma
****123.45
**123.45**
123.45****
***123.45*
热门试题
更多
类Contain的定义如下classContainprivate:intx;protected:intz;public:classEmbedprivate:inty;public:Embedy=100;intEmbed_Fun;MyEmbed;intContain_Fun;下列对上面定义的描述中正确的是
以下程序执行后的输出结果是#include<iostream>usingnamespacestd;voidtryintintintint;intmainintxyzr;x=1;y=2;tryxyzr;cout<<r<<end1;return0;voidtryintxintyintzintrz=x+y;x=X*X;y=y*y;r=z+x+y;
已知枚举类型定义语句为enumTokenNAMENUMBERPLUS=5MINUSPRINT=10则下列说法中错误的是
下列程序将xy和z按从小到大的顺序排列请将下面的函数模板补充完整template<classT>voidorder【13】Taifx>ya=xx=yy=a;ify>za=y;y=z;z=a;ifx>ya=x;x=y;y=a;
在一个单链表中若q节点是p节点的前驱节点若在q与p之间插入节点s则执行
下列叙述中正确的是
设有语句charstr1[]=stringstr2[8]*str3*str4=string则下列对库函数strcpy调用不正确的是
有以下程序:#include<iostream>usingnamespacestd;intmainintn[3]ijk=2;fori=0;i<k;i++n[i]=O;fori=O;i<k;i++forj=O;j<k;j++n[j]=n[i]+1;cout<<n[0]<<end1;return0;上述程序运行后输出结果是
数据的逻辑结构可用一个二元组B=KR来表示其中K是【1】R是【2】
在C++语言中对函数参数默认值描述正确的是
要想把类的一般成员函数说明为类的常成员函数则应该使用关键词【11】说明成员函数
下列关于队列的叙述中正确的是
下列运算符中运算符不能在C++中重载
若有以下程序#include<iostream>usingnamespacestd;classSampleprivate:constintn;public:Sampleinti:nivoidprintcout<<n=<<n<<end1;;intmainsamplea10;a.print;return0;上述程序运行后的输出结果是【14】
以下各选项中中都是C++语言保留字
对虚函数的调用有两种方式【11】和【12】
下图所示的二叉树的先序遍历序列是【4】
在一个长度为n的线性表中插入一个元素最坏情况下需要移动的数据元素数目
若有以下程序#include<iostream>usingnamespacestd;#definePI3.14classPointprivate:intxy;public:Pointintaintbx=a;y=b;intgetxreturnx;intgetyreturny;;classCircle:publicPointintr;public:Circleint’aintbintC:Pointabr=c;intgetrreturnr;doubleareareturnPI*r*r;;intmainCirclec15710;cout<<c1.area<<end1;return0;程序执行后的输出结果是【15】
下面几种调试方法中不适合调试大规模程序的是
假定MyClass为一个类则该类的拷贝构造函数的声明语句为
有以下程序#include<iostream>usingnamespacestdintmaininti=010j=10cout<<++i<<<<i--<<end1return0则该程序运行后的输出结果是【6】
设有关系R及关系S它们分别有pq个元组则关系R与S经笛卡儿积后所得新关系的元组个数是
有如下类的定义空格处的语句是classMyClass____________intxy;public:MyClassinta=0intb=0x=a;y=b;staticvoidchangex-=10;y-=10;;
下列类的定义中有处语法错误classBasepublic:BaseBaseintidata=i;private:intdata;;classDerive:publicBasepublic:Derive:BaseODeriveintxd=x;voidsetvalueintidata=i;private:d;;
若二维数组b有m列则在b[i][j]前的元素的个数为【7】
以下程序的输出结果是【9】#include<iostream>usingnamespacestdvoidfunstaticinta=0a+=2cout<<aintmainintCCforCC=1cc<4CC++funcout<<end1return0
函数swaparrn可完成对arr数组从第1个元素到第n个元素两两交换在运行调用函数中的语句后a[0]和a[1]的值分别为【9】a[0]=1a[1]=2swapa2
下列对变量的引用中错误的是
以下内容属于存储在计算机内有结构的数据集合的是
热门题库
更多
计算机操作系统
软件测试工程师
计算机等级考试
法宣在线考试
司法卷一
司法卷二
司法卷三
司法卷四
企业法律顾问资格考试
“十三五”规划继续教育
潜力激活与创造力开发继续教育
创新创业能力继续教育
科研方法与论文写作继续教育
全面深化改革实现文明发展
提高自身绩效路径与方法
互联网监管与网络道德建设