二级C++试题及答案(周末汇总)

发布于 2019-05-08 17:39  编辑:simi
0
计算机等级考试题库 扫码微信刷题


20199月全国计算机等级考试开考还有120多天时间,如何利用好这一阶段强化学习成为关键。赶紧来看看以下的二级C++试题及答案


二级C++试题及答案.jpg

二级C++试题及答案

【1】

综合应用题

使用VC++6.0打开考生文件夹下的源程序文件3.cpp,其中定义了用于表示日期的类Date,但类Date的定义并不完整,按要求完成下列操作,将类的定义补充完整。

(1)定义私有成员变量year、month、day。分别表示年、月、日,类型为int。请在注释1后添加适当的语句。

(2)完成构造函数,分别给year、month、day赋值,请在注释2后添加适当的语句。

(3)完成重载符号“十=”的定义,请在注释3后添加适当的语句。

(4)完成print打印函数,输出到屏幕和文件的格式相同,请在注释4后添加适当的语句。

注意:仅在函数指定位置添加语句,请勿改动主函数main与其他函数中的任何内容。

程序正常运行,输出的结果为2008年11月813。

试题程序:

#include(iostream.h)

#include(fstream)

#include(iomanip)

#include<CMATH)< p>

usingnamespacestd;

voidWriteFile(intc)

{

ofstreamout1;

out1.open("3.txt",ios_base::app);

out1<<C<<'';< p>

out1.close();

}

voidWriteFile(char*str)

{

ofstreamoutl;

out1.open("3.txt",ios_base::app);

out1<<STR;< p>

out1.close();

}

voidClearFile()

{

ofstreamout1;

out1.open("3.txt");

out1.close();

}

classDate

{

public

Date(inty,intm,intd)

{

//********1********

}

voidprint();

//********2********

{

month+=m;

inti=month/12

intj=month%12;

if(j==0)

{year+=(i-1);

month=12;

}

else

{

year+=i

month=j;

}

return*this;

}

private

//********3********

};

voidDate::print()

{

//********4********

WriteFile(year)

WriteFile("年");

WriteFile(month);

WriteFile("月");

WriteFile(day);

WriteFile("日");

}

intmain()

{

ClearFile();

DateOly_day(2008,8,8);

Olyday+=3

Oly_day.print();

return0;

}

答案:(1)应添加“year=y;month=m;day=d;”。

(2)应添加“Date&operator+=(intm)”。

(3)应添加“intyear,month,day;”。

(4)应添加“cout<<YEAR<<"年"<<MONTH<<"月"<<DAY<<"日”<<ENDL;”。< p>

 

 

 

【2】

程序改错题

使用VC++6.0打开考生文件夹下的源程序文件

1.cpp,该程序运行时有错误,请改正程序中的错误。本程序要求实现的功能为从键盘输入一个字符串,并将结果保存到文件1.txt中。

注意:不要改动main函数,不能增加或删除行,也不能更改程序的结构,错误的语句在

//******error******的下面。

试题程序:

#include

#include

//********error********

usingstd;

voidWriteFile(char*s)

{

ofstreamout1;

//********error********

out1.open("1.txt",binary|app);

for(inti=0;s[i]!=0;i++)

{

//********error********

out1.puts(s[i]);

}

out1.close();

}

voidClearFile()

{

ofstreamout1;

out1.open("1.txt");

out1.close();

}

intmain()

{

chars[1024];

ClearFile();

cout<<"pleaseinputastrin9:"<<ENDL;< p>

cin.getline(s,1024);

WriteFile(s);

return0;

}

答案:(1)应改为“usingnamespacestd;”。

(2)应改为“outl.open("1.txt",ios::binary|ios::app);”。

(3)应改为“out1.put(s[i]);”。

 

 

 

【3】

简单应用题

使用VC++6.0打开考生文件夹下的源程序文件

2.cpp。请完成函数fun(intx),该函数的功能是将X的值转换成二进制数输出到屏幕,并且在函数中调用写函数WriteFile将结果输出到2.txt文件中。

例如x=6,6的二进制数为110,则输出到屏幕的数为110。

注意:不要改动main函数,不得增行或删行,也不得更改程序的结构。

试题程序:

#include(iostream)

#include(fstream)

#include(cmath)

usingnamespacestd;

voidWriteFile(char*str)

{

ofstreamout1;

out1.open("2.txt",ios—base::binary|ios_base::app);

for(inti=0;str[i]!=0;i++)

out1.put(str[i]);

out1.close();

}

voidfun(intx)

{

}

voidClearFile()

{

ofstreamout1;

out1.open("2.txt");

out1.close();

}

intmain()

{

ClearFile();

fun(13);

return0;

}

答案:charstr[32];

inti;

for(i=30;i>=0;i--)//计算二进制

{

if(x%2)str[i]='1';//求余,如果余不为零字符串

str第i位为1

elsestr[i]='0';//否则为0

x>>=1;

if(!x)break;

}

str[31]='\0';//串加尾符

cout<<&str[i]<<ENDL;< p>

writeFile(&str[i]);

 

 

 

 

【4】

综合应用题

使用VC++6.0打开考生文件廷下的源程序文件3.cpp。其中定义的类并不完整,按要求完成下列操作,将类的定义补充完整,使其输出的结果为

TCA

TCB

TCC

(1)完成类B虚继承于A,请在注释1后添加适当的语句。

(2)完成类C虚继承于A,请在注释2后添加适当的语句。

(3)完成类D继承于B,C,请在注释3后添加适当的语句。

(4)函数fun通过调用基类的fun,完成所输出的内容,请在注释4后添加适当的语句。

注意:增加或者修改代码的位置已经用符号表示出来,请不要修改其他的程序代码。

试题程序:

#include

classTCA

{

public

voidfun()

{

cout<<"TCA"<<ENDL;< p>

}

};

//********1********classTCB

{

public

voidfun()

{

cout<<"TCB"<<ENDL;< p>

}

};

//********2********classTCC

{

public

voidfun()

{

cout<<"TCC"<<ENDL;< p>

}

};

//********3********classTCD

{

public

voidfun()

{

//********4********}

};

voidmain()

{

TCDtest;

test.fun();

return;

};

答案:(1)将“classTCB:”补充完整为“classTCB:virtualpub-licTCA”。

(2)将“classTCC:”补充完整为“classTCC:virtualpub-licTCA”。

(3)将“classTCD:”补充完整为“classTCD:publicTCB,publicTCC”。

(4)应添加“TCA::fun();TCB::fun();TCC::fun();”。

 

 

 

【5】

程序改错题

使用VC++6.0打开考生文件夹下的源程序文件1.cpp,该程序运行时有错误,请改正错误,使得程序输出:

Hello

test

注意:不要改动main函数,不能增加或删除行,也不能更改程序的结构,错误的语句在

//******error******的下面。

试题程序:

#include

//********error********

template

voidfun(Tt)

{

std::cout<<"test"<<STD::ENDL;< p>

}

//********error********

template

voidfun(boolt)

{

std::cout<<(t?"Hell0":"Hi")<<STD::ENDL;< p>

}

intmain()

{

//********error********

boolflag=TRUE;

fun(flag);

fun((int)flag);

return0;

}

答案:(1)应改为“template”。

(2)删除“template(bool)”。

(3)应改为“boolflag=true;”。



考完别放松,趁着热乎,叫上你下一次要考试的好同学,坐好小板凳,一起看看这次计算机等级考试题库-二级C++试题及答案的讲解吧,为后面的等级考试做准备!



文章推荐:

全国计算机等级考试可以不考一级直接考二级吗?

2019年全国计算机等级考试题库“二级MS Office 高级应用考试大纲”

全国计算机等级考试报考成功后可以退费吗?(内附计算机等级考试题库)


温馨提示:

考试想拿高分吗?更多计算机等级考试题库二级ms office试题请点击查看>>>二级ms office

想要了解更多的计算机等级考试题库请点击下载>>>计算机等级考试题库

想知道更多关于计算机等级考试题库的近期资讯吗?点击进入>>>计算机等级考试题库资讯


本文网址:http://www.k51.com.cn/info/jsjdjks/1905/0851858.html
选择分享到: