欢迎来到淘文阁 - 分享文档赚钱的网站! | 帮助中心 好文档才是您的得力助手!
淘文阁 - 分享文档赚钱的网站
全部分类
  • 研究报告>
  • 管理文献>
  • 标准材料>
  • 技术资料>
  • 教育专区>
  • 应用文书>
  • 生活休闲>
  • 考试试题>
  • pptx模板>
  • 工商注册>
  • 期刊短文>
  • 图片设计>
  • ImageVerifierCode 换一换

    电大开放教育C++语言程序设计期末复习题资料参考答案【含答案.doc

    • 资源ID:23975974       资源大小:44.50KB        全文页数:10页
    • 资源格式: DOC        下载积分:15金币
    快捷下载 游客一键下载
    会员登录下载
    微信登录下载
    三方登录下载: 微信开放平台登录   QQ登录  
    二维码
    微信扫一扫登录
    下载资源需要15金币
    邮箱/手机:
    温馨提示:
    快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝    微信支付   
    验证码:   换一换

     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    电大开放教育C++语言程序设计期末复习题资料参考答案【含答案.doc

    电大C+语言程序设计期末复习题及答案小抄资料一、单项选择题1、 面向对象程序设计数据与_放在一起,作为一个相互依存、不可分割的整体来处理。A、对数据的操作B、信息C、数据隐藏D、数据抽象2、 已知:int a=1,b=2,c=3,d=4,则表达式a<b?a:c<d?c:d 的值为_。A、1B、2C、3D、43、下列while循环的次数是_。while( int i=0 ) i- -;A、0B、1C、5D、无限4、以下程序的输出结果是_。#include <iostream.h>fuc( char* s) char* p=s; while( *p) p+; return (p-s);main() cout<<fuc("ABCDEF"); A、3B、6C、8D、05、_的功能是对对象进行初始化。A、析构函数B、数据成员C、构造函数D、静态成员函数6、下列引用的定义中,_是错误的。A、int i;B、int i;C、float i;D、char d;int& j=i; int &j; float& j=i;j=i; char &k=d;7、若类A和类B的定义如下:class A int i,j;public: void get(); /.;class B:public A int k;public: make(); /.;void B:make() k=i*j;则上述定义中,_是非法的表达式。A、void get();B、int k;C、void make();D、k=i*j;8、以下程序段_。int x = -1;do x = x*x;while( !x );A、是死循环B、循环执行2次C、循环执行1次D、有语法错误9、对定义重载函数的下列要求中,_是错误的。A、要求参数的个数不同B、要求参数中至少有一个类型不同C、要求参数个数相同时,参数类型不同D、要求函数的返回值不同10、一个_允许用户为类定义一种模式,使得类中的某些数据成员及某些成员函数的返回值能取任意类型。A、函数模板B、模板函数C、类模板D、模板类(Key:1-5:AAABC6-10:BDCDC)二、填空题1、在C+类中可以包含 、 和 三种具有不同访问控制权的成员。(Key:公有或public,保护或protected,私有或private)2、以下程序的执行结果是_。#include <iostream.h>void func( int );void func( double );void main( ) double a=88.18; func(a); int b=97; func(b); void func( int x ) cout<<x<<endl;void func( double x ) cout<<x<<",";(Key: 88.18,97)3、类中的数据和成员函数默认访问类型为_。(Key:私有或private)4、以下程序的执行结果是_。#include <iostream>using namespace std;f(int b,int n)int i,r=1;for( i=0;i<=n;i+ )r=r*bi;return r;int _tmain()int x,a = 2,3,4,5,6,7,8,9;x=f(a,3);cout<<"x="<<x<<endl;return 0;(Key: x=120)5、在类内部定义的_数据不能被不属于该类的函数来存取,定义为_的数据则可以在类外部进行存取。(Key:private或 私有 或 protected 或 保护;public 或 公有)6、下列程序输出的结果是_。#include <iostream>using namespace std;void sub( char a,char b )char c=a;a=b;b=c;void sub( char* a,char b )char c=*a;*a=b;b=c;void sub( char* a,char* b )char c=*a;*a=*b;*b=c;int _tmain() char a='A',b='B'sub(&a,&b);cout<<a<<b<<endl;return 0;(Key: BA)7、下列程序输出的结果是_。#include <iostream>using namespace std;void Exchange( int* pFirst,int* pLast )if( pFirst<pLast )int Change = *pFirst;*pFirst = *pLast;*pLast = Change;Exchange(+pFirst,-pLast);void Print( int Integer,int HowMany)for( int Index=0; Index<HowMany; Index+ )cout<<IntegerIndex<<" "cout<<endl;int _tmain()int Integer = 1,2,3,4;Exchange(&Integer0,&Integer3);Print(Integer,4);return 0;(Key: 4 3 2 1)8、下列程序输出的结果是_。#include <iostream>using namespace std;int _tmain()int nInteger = 5, &rInteger = nInteger;rInteger = nInteger+1;cout<<nInteger<<","<<rInteger<<endl;return 0;(Key: 6,6)9、_是一种特殊的成员函数,它主要用来为对象分配内存空间,对类的数据成员进行初始化并进行对象的其他内部管理操作。(构造函数)10、下列程序输出的结果是_。#include <iostream>using namespace std;int _tmain()int x=2,y=3,z=4;cout<<( x<y ) && ( !z ) | (x*y) )<<endl;return 0;(Key:1)三、程序分析:给出程序运行后的输出结果(每小题5分,共20分)1、#include <iostream>using namespace std;int _tmain() int x=1,y=2,z=3; x+=y+=z; cout<<(x<y?y:x)<<"," cout<<(x<y?x+:y+)<<"," cout<<y<<endl; return 0;Key: 6,5,6 2、#include <iostream>using namespace std;void func( int b );void main() int a = 5,6,7,8 ,i; func(a); for( i=0;i<4;i+ ) cout<<ai<<" ";void func( int b ) int j; for( j=0;j<4;j+ ) bj = 2*j;Key: 0 2 4 63、#include <iostream>using namespace std;class CSampleint i;public:CSample(void);CSample(void);CSample(int val);void Print(void);CSample:CSample(void)cout<<"Constructor1"<<endl;i=0;CSample:CSample(int val)cout<<"Constructor2"<<endl;i=val;void CSample:Print(void)cout<<"i="<<i<<endl;CSample:CSample(void)cout<<"Destructor"<<endl;int _tmain() CSample a,b(10);a.Print();b.Print();return 0;Key: Constructor1Constructor2i=0i=10DestructorDestructor4、#include <iostream>using namespace std;class CDataprotected:int nInteger;public:CData( int Integer );CData( void );void Print(void);CData:CData( int Integer ): nInteger(Integer)cout<<"Constructing a data"<<endl;CData:CData( void )cout<<"Destructing a data"<<endl;void CData:Print(void)cout<<"The data is "<<nInteger<<endl;class CNumber :public CDataprotected:double fNumber;public:CNumber(int Integer,double Number);CNumber(void);void Print(void);CNumber:CNumber( int Integer,double Number ): CData( Integer ), fNumber(Number)cout<<"Constructing a number"<<endl;CNumber:CNumber( void )cout<<"Destructing a number"<<endl;void CNumber:Print(void)CData:Print();cout<<"The number is "<<fNumber<<endl;int _tmain()CNumber Number(1,3.8);Number.Print();return 0;Key: Constructing a dataConstructing a numberThe data is 1The number is 3.8Destructing a numberDestructing a data四、根据要求完成程序1、完成以下程序,求1!+2!+3!+4!+5!+6!+7!+8!+9!+10!之和。#include <iostream>using namespace std;int _tmain() long Term=_ ,Sum=_;for( int Index=1;Index<=_;Index+)Term *=_;Sum +=_;cout<<"Sum of factorial from 1 to 10 is "; cout<<Sum<<endl;return 0; Key:1 0 10 Index Term2、完成下面程序,计算三角形和正方形的面积。设三角形和正方形的宽为fWidth,高为fHeight,则三角形的面积为fWidth*fHeigth/2。#include <iostream>using namespace std;class CShapepublic:CSquare:CSquare(double Width,double Height):_double CSquare:Area(void)_;int _tmain() CTriangle Triangle(16,8); cout<<"The area of triangle is "<<Triangle.Area()<<endl; CSquare Square(13,8); cout<<"The area of square is "<<Square.Area()<<endl; return 0; Key: fWidth(Width) CShape(Width,Height) return fWidth*fHeight/2 CShape(Width,Height) return fWidth*fHeight五、用面向对象方法设计一个阶乘类CFactorial,在CFactorial类的构造函数CFactorial(long Integer)中,将Integer的值赋给nInteger;在主函数int _tmain(),键盘输入任一整数Integer,以Integer的值为实际参数构造一个阶乘对象Factorial,调用对象Factorial的相应成员函数输出nInteger的阶乘值fFactorial。完成以下函数的代码设计:(1)、设计构造函数CFactorial(long Integer),求出nInteger的阶乘值fFactorial。若nInteger没有阶乘值,则fFactorial赋值为0。(2)、设计CFactorial类的成员函数void Print(void),输出nInteger的阶乘值fFactorial。若nInteger没有阶乘,则输出nInteger没有阶乘的信息。#include <iostream>using namespace std;class CFactorialpublic:CFactorial(long Integer);protected:long nInteger;float fFactorial;public:void Print(void);CFactorial:CFactorial(long Integer) : nInteger(Integer)/作答处void CFactorial:Print(void)/作答处int _tmain()long Integer;cout<<"Enter a integer: ";cin>>Integer; CFactorial Factorial(Integer);Factorial.Print();return 0; Key: 解:参考程序:#include <iostream>using namespace std;class CFactorialpublic:CFactorial(long Integer);protected:long nInteger;float fFactorial;public:void Print(void);CFactorial:CFactorial(long Integer) : nInteger(Integer)if( nInteger<0 ) /1分fFactorial = 0; /1分else /1分fFactorial=1; /1分while( Integer>1 ) /1分fFactorial*=Integer; /1分Integer-; /1分void CFactorial:Print(void)if( fFactorial ) /0.5分cout<<"The factorial of "<<nInteger<<" is "<<fFactorial<<endl; /1分else /0.5分cout<<"There is not any factorial for "<<nInteger<<endl;/1分int _tmain()long Integer;cout<<"Enter a integer: ";cin>>Integer; CFactorial Factorial(Integer);Factorial.Print();return 0;

    注意事项

    本文(电大开放教育C++语言程序设计期末复习题资料参考答案【含答案.doc)为本站会员(豆****)主动上传,淘文阁 - 分享文档赚钱的网站仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知淘文阁 - 分享文档赚钱的网站(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    关于淘文阁 - 版权申诉 - 用户使用规则 - 积分规则 - 联系我们

    本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

    工信部备案号:黑ICP备15003705号 © 2020-2023 www.taowenge.com 淘文阁 

    收起
    展开