首页
试卷库
试题库
当前位置:
X题卡
>
所有题目
>
题目详情
有如下程序: #include <iostream> using namespace std; class shapes protected: int x,y; public: ...
查看本题答案
包含此试题的试卷
计算机等级考试《填空》真题及答案
点击查看
你可能感兴趣的试题
有如下程序 #include<iostream> usingnamespacestd; cla
有如下程序 #include<iostream> usingnamespacestd; cla
有如下的程序 #include<iostream> #include<fstream> usi
若有如下程序段 #include<iostream> usingnamespacestd in
有如下程序 #include<iostream> usingnamespacestd clas
有如下的程序: #include<iostream> #include<fstream> us
若有如下程序段#include<iostream>usingnamespacestdintmainc
有如下程序: #include<iostream> usingnamespacestd; cl
有如下程序#include<iostream>usingnamespacestd;classPARE
有如下程序 #include<iostream> usingnamespacestd; cla
有如下程序 #include<iostream> usingnamespacestd; cla
有如下程序 #include<iostream.h> voidmain { intx=2y=
若有如下程序段#include<iostream>usingnamespacestdintmainc
若有如下程序段 #include<iostream> usingnamespacestd in
若有如下程序段 #include<iostream> usingnamespacestd in
有如下程序 #include usingnamespacestd; intmain{ ch
***
###
***###
无输出
有如下程序 #include #include usingnamespacestd; int
##OK123
##OK#123
OK##123
OK##123#
有如下程序 #include<iostream> usingnamespacestd; cla
若有如下程序段#include<iostream>usingnamespacestdintmainc
有如下程序 #include<iostream> usingnamespaeestd clas
热门试题
更多
在面向对象方法中一个对象请求另一对象为其服务的方式是通过发送
一个C++程序的执行总是从
下列关于栈的叙述中不正确的是
在选择运算所得到的结果关系中所含的元组数不合【5】原关系中的元组数
若有以下程序voidgint**q**q++;*q++;voidmainintline[5];int*p=line;fori=0;i<5;i++*p=i;g&P;fori=0;i<5;i++cout<<line[i];cout<<end1;该程序运行后的输出结果为
下面内容不属于使用软件开发工具好处的是
若有以下程序段#include<iostream>usingnamespacestdintmaininta[]=145int*p=&a[0]x=6yzfory=0y<3y++z=*p+y<x*p+yxcout<<z<<end1return0程序运行后的输出结果是
有以下程序#include<iostream>usingnamespacestd;intf1intxintyreturnx>yx:y;intf2intxintyreturnx>yy:x;intmaininta=4b=3c=5def;d=f1ab;d=f1dc;e=f2ab;e=f2ec;f=a+b+c-d-e;cout<<d<<<<e<<<<f<<end1;return0;执行后的输出结果是
数据流图用于描述一个软件的逻辑模型数据流图由一些特定的图符构成下列图符名称标识的图符不属于数据流图合法图符的是
关于类型转换的说法中错误的是
已知某序列为49386597761327试采用该序列的第一个元素为枢轴进行快速排序则经过一趟快速排序之后所得到的序列为【2】
有如下函数模板的定义template<classT>TfuncTxTyreturnx*x+y*y在下列对func的调用中不正确的是
若有以下程序#include<iostream>usingnamespacestd;template<classT>TminTxTyifx<yreturnx;elsereturny;intmainintn1=2n2=10;doubled1=1.5;d2=5.6;cout<<minn1n2<<;cout<<mind2d2<<end1;return0;程序运行后的输出结果是【13】
以下特点中不属于线性表的顺序存储结构的是
在待排序的元素序列基本有序的前提下效率最高的排序方法是
有以下程序#include<iostream>usingnamespacestd;classAprivate:intxy;public:voidsetintiintjx=i;y=j;intget_yreturny;;classboxprivate:intlengthwidth;Alabel;public:voidsetint1intwintsintplength=1;width=w;label.setsp;intget_areareturnlength*width;;intmainboxsmall;small.set24135;cout<<small.get_area<<end1;return0;运行后的输出结果是
在C++语言中每个类都有一个隐含的指针叫【10】指针该指针指向【11】
若有以下程序#include<iostream>usingnamespacestd;classpointprivate:intxy;public:pointx=0;y=0;voidsetpointintx1inty1x=x1;y=y1;voiddispointcout<<x=<<x<<<<y=<<y<<end1;;intmainpoint*p=newpoint;p->setpoint512;p->dispoint;return0;程序运行后的输出结果是
若有以下程序#include<iostream>usingnamespacestd;classAprivate:inta;public:voidsetaintxa=x;voidshowacout<<a<<;;classBprivate:intb;public:voidsetbintxb=x;voidshowbcout<<b<<;;classC:publicAprivateBprivate:intc;public:voidsetcintxintyintzc=z;serax;sethy;voidshowcshowa;showb;cout<<c<<end1;;intmainCc;c.setc123;c.showc;return0;程序执行后的输出结果是
下面的程序段中有处错误和警告#include<stdio.h>intmainintxcin>>xcout<<x
下列关于继承的描述中错误的是
有以下程序#include<iostream>usingnamespacestd;intmainchars1[10]s2[10];char*p=s1*q=s2;cin>>s1>>s2;while*p!=’/0’p++;while*q!=’/0’*p++=*q++;*p=’/0’;cout<<s1<<end1;return0;
一个向量第1个元素的存储地址是100每个元素的长度为2则第5个元素的地址是
有如下程序classBase1public:inta;voidbreturn;voidcfloata=float;;classBase2public:voidbvoidcprivate:inta;;classDerived:publicBaselpublicBase2public:voidb;voidmainDerivedobj;obj.a=1;//①obj.b;//②obj.c10;//③下面各项对语句①②⑧的描述中正确的是
以下程序执行结果是#include<iostream.h>classBasepublicvirtualvoidfuncout<<B;;classDerivedpublic:Derivedcout<<D;virtualvoidfunBase::fun;cout<<C;intmainBase*ptr;Derivedobj;ptr=&obj;p->fun;return0;
对待排序文件的初始状态不作任何要求的排序方法有
概要设计是软件系统结构的总体设计以下选项中不属于概要设计的是
下面程序的功能是将字符数组a中下标值为偶数的元素从小到大排列其他元素不变请填空完成此程序#include<iostream>#include<string>usingnamespacestd;intmainchara[]=changuagetm;intijk;k=strlenA;fori=0;i<=k-2;i+=2m=i;forj=i+2;j<=k;【7】ifa[m]>a[j]m=j;if【8】t=a[i];a[i]=a[m];a[m]=t;cout<<a<<end1;return0;
有如下的程序#include<iostream>#include<fstream>usingnamespacestd;intmainofstreamoutfD://temp.txtios_base::trunc;outf<<WorldWideWeb;outf.close;ifstreaminfD://temp.txt;chars[20];inf>>s;inf.close;cout<<s;return0;执行后的输出结果是【15】
在下面的类定义中错误的语句是classSamplepublicSampleintval//①~Sample//②privateinta=2.5//③Sample//④
热门题库
更多
计算机等级考试
法宣在线考试
司法卷一
司法卷二
司法卷三
司法卷四
企业法律顾问资格考试
“十三五”规划继续教育
潜力激活与创造力开发继续教育
创新创业能力继续教育
科研方法与论文写作继续教育
全面深化改革实现文明发展
提高自身绩效路径与方法
互联网监管与网络道德建设
“互联网+”和电子商务继续教育
职业道德素养继续教育