首页
试卷库
试题库
当前位置:
X题卡
>
所有题目
>
题目详情
有以下程序,其输出结果是( )。 #include <iostream> using namespace std; int main( ) char a[10]=’1’,’2’,’3’...
查看本题答案
包含此试题的试卷
计算机等级考试《单项选择》真题及答案
点击查看
你可能感兴趣的试题
有以下程序 #include<iostream> usingnamespacestd; int
有以下程序#include<stdio.h>mainchar*a[]=abcdefghijk;int
aegi
dfhk
abcd
abcdefghijk
以下程序的输出结果是【12】 #include<stdio.h> main {inti fo
有以下程序 #include<stdio.h> #include<string.h> main
有以下程序 #include<iostream> usingnamespacestd intm
以下程序段的输出结果是 #include mian {char*ch[4]={redgreen
有以下程序#include<stdio.h>maininti=1;i=i^i;printf%d/ni
-1
1
7
有以下程序 #include main { intisum=0; fori=1;i<9;i+=2
有以下程序#include<stdio.h>#include<string.h>mainchara[
以下程序的输出结果是______ #include<stdio.h> main {inti
有以下程序 #include main { inta[]={10203040}*p=ai
30
40
10
20
有以下程序:#include<stdio.h>#include<string.h>main{char
22
76
72
62
有以下程序#include<stdio.h>main{inti=0a=0whilei<20{for{
62
63
23
36
有以下程序 #include<iostream> usingnamespacestd intm
有以下程序 #include<lostream> usingnamespacestd; int
有以下程序 #include<iostream> usingnamespacestd intm
有以下程序#include<stdio.h>mainintisum=0;fori=1;i<9;i+=
有以下程序#include<stdio.h>mainintt=1i=5;for;i>=0;i--t*
有以下程序 #include<stdio.h> main {intt=1i=5; for;i
有以下程序段 #include<iostream.h> #defineMINxyx<yx:y
热门试题
更多
指针变量所保存的不是一般的数据值而是程序中另一个对象的______
函数swapan可完成对a数组从第1个元素到第n个元素两两交换其中b[0]=1;b[1]=2;swapb2在运行调用函数中的语句后b[0]和b[1]的值分别为
将x+y*z中的+用成员函数重载*用友元函数重载应写为______
有如下程序#include<iostream>usingnamespacestd;classApublic:Acout<<A;;classBpublic:Bcout<<B;classC:publicABb;public:Ccout<<C;;intmainCobj;return0;执行后的输出结果是
己知下列程序的输出结果是42请将横线处缺失的部分补充完整#include<iostream>usingnamespacestd;classTestClassintvalue;public:TestClass:value0;voidsetValueintvalue______=value;//给TestClass的数据成员value赋值voidprintcout<<value;;;intmainTestClassf;f.setValue42;f.print;return0;
非成员函数应声明为类的______函数才能访问这个类的private成员
下列程序运行后的输出结果是#include<iostream.h>voidfunintintint*;voidmainintxyz;fun56&x;fun7x&y;funxy&z;cout<<x<<<<y<<<<z<<end1;voidfunintaintbint*cb+=a;*c=b-a;
请将下列类定义补充完整classBasepublic:voidfuncout<<Base::fun<<end1;;classDerived:publicBasepublic:voidfun______//显式调用基类的fun函数cout<<Derived::fun<<end1;;
cout是I/O流库预定义的【12】
下列字符串中正确的C++标识符是
下列程序的输出结果是______#include<iostream>usingnamespacestd;classTestpublic:Testcnt++;~Testcnt--;staticintCountreturncnt;private:staticintcnt;;intTest::cnt=0;intmaincout<<Test::Count<<;Testt1t2;Test*pT3=newTest;Test*pT4=newTest;cout<<Test::Count<<;deletepT4;deletepT3;cout<<Test::Count<<end1;return0;
按照逻辑结构分类结构可以分为线性结构和非线性结构栈属于______
在面向对象方法中类之间共享属性和方法的机制称为______
下列特征中不是面向对象方法的主要特征的是
下列关于栈的描述中错误的是
如果有以下定义及初始化inta=3*p=&a;则由此可以推断*p的值是
与以下程序段等价的是while
下列叙述中正确的是
下列工具中为需求分析常用工具的是
下列有关拷贝构造函数的描述中错误的是
有下列二叉树对此二叉树中序遍历的结果为
以下程序调用findmax函数返回数组中的最大值请填空完成此函数#include〈iostream〉usingnamespacestdintfindmaxint*aintnint+p*sforp=as=ap-a〈np++if〈u〉【8】〈/u〉*s=*preturn*Sintmainintx[5]=12211416cout〈〈findmaxX5〈〈end1return0
设计软件结构是在软件生命周期的
下列程序输出的结果是#include<stdio.h>fun1characharbcharc;c=a;a=b;b=c;fun2char*acharbcharc;c=*a;*a=b;b=c;fun3char*achar*bcharc;c=*a;*a=*b;*b=c;voidmaincharab;a=’A’;b=’B’;fun1ab;putchar
在下列函数原型中可以作为类AA构造函数的是
有如下程序#include<iostream>usingnamespacestd;classBASEpublic:~BASEcout<<BASE;;classDERIVED:publicBASEpublic:~DERIVEDcout<<DERIVED;;intmainDERIVEDx;return0;执行后的输出结果是
在下面的程序的横线处填上适当的语句使该程序的输出为12#include〈iostream〉usingnamespacestd;classBasepublic:inta;Baseintia=i;classDerived:publicBaseinta;public:Derivedintx:Basexbx+1voidshow〈u〉【14】〈/u〉;//输出基类数据成员a的值cout〈〈b〈〈end1;;intmainDerivedd1;d.show;return0;
下列不属于软件工程3个要素的是
下列关于继承的描述中错误的是
非成员函数只有在声明为类的【10】才能访问这个类的所有private成员
热门题库
更多
嵌入式软件助理工程师
计算机操作系统
软件测试工程师
计算机等级考试
法宣在线考试
司法卷一
司法卷二
司法卷三
司法卷四
企业法律顾问资格考试
“十三五”规划继续教育
潜力激活与创造力开发继续教育
创新创业能力继续教育
科研方法与论文写作继续教育
全面深化改革实现文明发展
提高自身绩效路径与方法