首页
试卷库
试题库
当前位置:
X题卡
>
所有题目
>
题目详情
执行“cout<<char(‘A’+2)<<end1;”语句后,得到的输出结果为 【21】 。
查看本题答案
包含此试题的试卷
计算机等级考试《填空》真题及答案
点击查看
你可能感兴趣的试题
以下程序的执行结果为【9】 #include<iostream> usingnamespaces
执行cout<<char’F’-2<<end1语句后得到的输出结果后【6】
有以下程序 #include<iostream> #include<fstream> usin
程序执行后的输出结果是#include<iostream.h>voidmaincharflag='c
12
23
34
45
对于下列语句char*strl=Hello;char*str2=.Hello;*strl=’P’;c
下列程序的输出结果为【12】 #include<iostreamh> voidFunccharc
执行cout.<<char‘F’-2<<end1语句后得到的输出结果为【3】
下列程序的输出结果为【12】#include<iostreamh>voidFunccharchswi
执行以下程序输出结果的最后一行语句是______ #include<iostream.h> cl
执行语句序列 intx=10&r=x; cout<<x<<’-’<<r<<end1; 输出结果
以下程序的执行结果为【9】#include<iostream>usingnamespacestdvo
执行cout<<char’A’+2<<end1;语句后得到的输出结果为【6】
使用VC++6.0打开考生文件夹下的源程序文件1.cpp该程序运行时有错请改正程序中的错误使程序输出
执行下列语句序列 imx=1&y=x; cout<<x<<’-’<<y<<end1; 输出结果
执行cout<<char‘A’+2<<end1语句后得到的输出结果为______
对于下列语句 char*strl=Hello; char*str2=.Hello; *strl
执行下列语句#include<iostream>usingnamespacestd;intmain{
3
4
5
6
已知数组arr的定义如下intarr[5]=12345下列语句中输出结果不是2的是
cout<<*arr+1<<end1;
cout<<*(art+1)<<end1;
cout<<arr[1]<<end1;
cout<<*arr<<end1;
执行下列语句段后程序的输出结果是______intx[]={12345};intq=x;cout
执行下列语句序列imx=1&y=x;cout<<x<<’-’<<y<<end1;输出结果为_____
热门试题
更多
下列关于虚函数的描述中正确的是______
有如下的程序#include<ctring>#include<iostream>usingnamespacestd;classMyStringpublic:MyStringconstchar*s;~MyStringdelete[]data;protected:unsignedlen;char*data;;MyString::MyStringconstchar*slen=strlens;data=newchar[len+1];strcpydatas;intmainMyStringaC++Programing;MyStringb
设有定义语句inta=12则表达式a*=2+3的运算结果是【6】
若语句cout<<setfill'>'<<setw5<<3141512<<setw5<<OK!是程序中第一个输出语句则输出结果是______
下面是用来计算n的阶乘的递归函数请将该函数的定义补充完整注阶乘的定义是n!cn*n-1*...*2*1unsignedfactunsignednifn<=1return1;return【12】;
在面向对象方法中类的实例称为【2】
有以下程序#include<iostream>usingnamespacestd;classMyClasspublic:MyClassintnnumber=n;//拷贝构造函数MyClassMyClass&othernumber=other.number;-MyClassprivate:intnumber;;MyClassfunMyClasspMyClasstempp;returntemp;intmainMyClassobj110obj20;MyClassobj3obj1;obj2=funobj3;return0;程序执行时MyClass类的拷贝构造函数被调用的次数是______次
在下向程序和横线处填上适当的内容使程序执行后的输出结果为1/2005#include<iostream>usingnamespacestd;classDatepublic:Dateintm=1inty=0:monthmyearyvoidPrintcout<<month<</<<year<<end1;【9】operator+eonstDate&d1constDate&d2;private:intmonthyear;;【10】operator+constDate&d1constDate&d2intyearmonth;year=d1.year+d2.year;month=d1.month+d2.month;year+=month-1/12;month=month-1%12+1;returnDatemonthyear;voidmainDated132004d2d310;d2=d3+d1;d2Print;
在重载一个运算符为成员函数时其参数表中没有任何参数这说明该运算符是______
在下面函数的横线处填上适当的内容使该函数能够利用递归方法求解字符串str的长度不得使用系统提供的字符串处理函数intGetLenchar*strif【6】return【17】elsereturn1+GetLenstr+1
将一个函数声明为一个类的友元函数必须使用关键字【8】
用树型结构表示实体之间联系的模型是______
下面是关于派生类声明的开始部分其中正确的是______
关于关键字class和typename下列表述正确的是______
下列说法中错误的是______
已知n是一个int型变量下列语句中错误的是______
有如下程序#include<iostream>#include<iomanip>usingnamespacestd;classCSumintxy;public:CSumintx0inty0:xx0yy0friendostream&operator<<ostream&osconstCSum&x
下列程序的输出结果是【10】#include<iostream>usingnamespacestd;intmaininti=5;iht&r=i;r=7;cout<<i<<end1;return0;
已知outfile是一个输出流对象要想将outfile的文件指针定位到当前位置之前321字节处正确的函数调用语句是______
有如下程序#include<iostream>usingnamespacestd;classBasepublic:Basecout<<BB;f;voidfcout<<Bf;;classDerived:publicBasepublic:Derivedcout<<DD;voidfcout<<Df;;intmainDerivedd;return0;执行上面的程序将输出______
在关系数据库中把数据表示成二维表每一个二维表称为【4】
下列函数中对调用它的函数没有起到任何作用的是______
为了使模块尽可能地独立要求______
如果一个工人可以管理多个设备而一个设备只被一个工人管理则实体工人与实体设备之间存在【4】的联系
在下面的类定义中横线处应填入的内容是______classFredpublic:voidprintcout<<data<<end1;voidsetDatadoubleddata=d;staticintcount;private:doubledata;;______count=0;//表态数据成员的定义
数据的存储结构是指______
与成员访问表达式p→name等价的表达式是【14】
下列对于软件测试的描述中正确的是______
数据的逻辑结构在计算机存储空间中的存放形式称为数据的【2】
数据独立性是数据库技术的重要特点之一所谓数据独立性是指______
热门题库
更多
嵌入式软件助理工程师
计算机操作系统
软件测试工程师
计算机等级考试
法宣在线考试
司法卷一
司法卷二
司法卷三
司法卷四
企业法律顾问资格考试
“十三五”规划继续教育
潜力激活与创造力开发继续教育
创新创业能力继续教育
科研方法与论文写作继续教育
全面深化改革实现文明发展
提高自身绩效路径与方法