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

    2022年2022年根据程序代码片段及运行结果进行程序填空 .pdf

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

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

    2022年2022年根据程序代码片段及运行结果进行程序填空 .pdf

    根据程序代码片段及运行结果进行程序填空(16*1) A: 1. #include using namespace std; void swap(_1_,_2_) int temp; temp=a; a=b; b=temp; /实现 a 和 b 的值互换 int main( ) int i=3,j=5; swap(i,j); couti,jendl; /i 和 j 的值未互换return 0; 输出结果: 5, 3 2.请完成下面的一个类的定义:class ABC private: int a,b; public: ABC(int aa, int bb=5) 3 ; / 将 aa 的值赋给a 4 ; / 将 bb 的值赋给b 5 ; 6 ;int ABC:fA( ) return a+b; int ABC:fB( ) return a*b; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 12 页 - - - - - - - - - 3. class Base1 int x; public: Base1(int a) x=a;cout 调用基类1 的构造函数 !n; Base1( ) cout调用基类1的析构函数 !n; ; class Base2 int y; public: Base2(int a) y=a;cout 调用基类2 的构造函数!n; Base2( ) cout调用基类2的析构函数 !n; ; class Derived:public Base2, public Base1 int z; Base1 b1; /用 a 为参数调用Base1构造函数,b 为参数调用Base2构造函数,a+b 构造子对象b1 public: Derived(int a,int b): _7_,_8_, _9_ z=b; cout 调用派生类的构造函数!n; Derived( )cout 调用派生类的析构函数!n; ; 4. #include using namespace std; class Complex public: Complex()real=0;imag=0; Complex(double r)real=r;imag=0; Complex(double r,double i)real=r;imag=i; /将 +运算符重载为友元函数_10_Complex _11_ (Complex &c1,Complex &c2); void display(); private: double real; double imag; ; /类外定义友元函数_12_ (Complex &c1,Complex &c2) return Complex(c1.real+c2.real, c1.imag+c2.imag); void Complex:display() cout(real,imagi)endl; int main() Complex c1(3,4),c2(5,-10),c3; c3=c1+c2; coutc1=; c1.display(); 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 2 页,共 12 页 - - - - - - - - - coutc2=; c2.display(); coutc1+c2=; c3.display(); return 0; 5. class A protected: int x; public: A()x =1000; _13_void print() cout “x=”x, t?; /虚函数; class B:public A int y; public: B() y=2000; void print() cout “y=”y, t?; /派生虚函数; class C:public A int z; public: C()z=3000; void print() cout “z=”z, n?; /派生虚函数; void main(void ) Aa, _14_pa; B b; a.print(); b.print(); /静态调用pa=&a; pa_15_print();/ 调用类 A 的虚函数pa=&b; (*pa) _16_print();/ 调用类 B 的虚函数 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 3 页,共 12 页 - - - - - - - - - B: 1. #include using namespace std; void swap(_1_,_2_) int temp; temp=*a; *a=*b; *b=temp; /实现 a 和 b 的值互换 int main( ) int i=3,j=5; swap(&i,&j); couti,jendl; /i 和 j 的值未互换return 0; 输出结果: 5, 3 2. #include public: void fun()coutBase:funendl; _3_Base /公有继承Base类void fun() _4_ /显示调用基类的函数fun() coutDerived:fun endl; 3. #include using namespace std; _5_ T max(T a,T b,T c) if(ba) a=b; if(ca) a=c; return _6_; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 4 页,共 12 页 - - - - - - - - - int main() int i1=8,i2=5,i3=6,i; double d1=56.9,d2=90.765,d3=43.1,d; i=max(i1,i2,i3); d=max(d1,d2,d3); couti_max=iendl; coutd_max=dendl; return 0; 4. #include using namespace std; class Box public: Box(int w=10,int h=10,int len=10); int volume(); private: int height; int width; int length; ; Box:Box(int h,int w ,int len): _7_,_8_,_9_ _10_volume() return(height*width*length); 5.设有下面的定义int s10=1,2,3,4,5,6,7,8,9,10; int sum=0; 请完善下面的语句实现求数组s的所有元素之和,并保存在变量sum中:for ( int _11_;_12_; j+ ) _13_; 6. 重载插入运算符“ ”#include class Point int px, py; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 5 页,共 12 页 - - - - - - - - - public: Point(int x=0, int y=0) px=x;py=y; _14_ /运算符重载函数声明; _15_ /运算符重载函数定义 cout pt.px pt.py endl; _16_ void main() Point p1(1,2); cout p1; C: 1. #include using namespace std; _1_int max(int a,int b, _2_) /这是一个内置函数,求3个整数中的最大者if (ba) a=b; if (ca) a=c; return _3_; int main( ) int i=7,j=10,k=25,m; m=max(i,j,k); coutmax=mendl; return 0; 2. #include using namespace std; _4_Time _5_: int hour; int minute; int sec; ; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 6 页,共 12 页 - - - - - - - - - int main() _6_t1; Time &t2=t1; cint2.hour; cint2.minute; cint1.sec; coutt1.hour:t1.minute:t2.secendl; 3. #include using namespace std; class Box public: Box(); Box(int h,int w ,int len): _7_,_8_,length(len) int volume(); private: int height; int width; int length; ; _9_Box() height=10; width=10; length=10; _10_volume() return(height*width*length); 4. #include using namespace std; class Complex public: Complex()real=0;imag=0; Complex(double r)real=r;imag=0; Complex(double r,double i)real=r;imag=i; /定义类型转换函数,将double转换为complex类型_11_double()return real; /声明运算符重载为成员函数名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 7 页,共 12 页 - - - - - - - - - _12_ (Complex c1,Complex c2); void display(); private: double real; double imag; ; /类外定义运算符重载函数_13_ (Complex c1,Complex c2) return Complex(c1.real+c2.real, c1.imag+c2.imag); void Complex:display() cout(real,imagi)endl; int main() Complex c1(3,4),c2(5,-10),c3; c3=c1+2.5; c3.display(); return 0; 5. #include #include using namespace std; /定义公共基类Person class Person public: _14_ (char *nam,char s,int a) /构造函数strcpy(name,nam);sex=s;age=a; protected: /保护成员char name20; char sex; int age; ; /定义类Teacher class Teacher: _15_Person /声明 Person为公用继承的虚基类public: Teacher(char *nam,char s,int a,char *t): _16_ (nam,s,a) /构造函数strcpy(title,t); protected: /保护成员char title10; /职称; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 8 页,共 12 页 - - - - - - - - - D: 1.#include using namespace std; int max(int a,int b,int c) /求 3 个整数中的最大者if (ba) a=b; if (ca) a=c; return a; int max( _1_, _2_) /求两个整数中的最大者if (ab) return a; else return b; int main( ) int a=7,b=-4,c=9; coutmax(a,b,c)endl; /输出 3 个整数中的最大者cout_3_ endl; /输出两个整数a,b 中的最大者return 0; 2. #include using namespace std; class Time public: Time() hour=0; minute=0; sec=0; void set_time(); void show_time(); private: int hour; int minute; int sec; ; _4_set_time() cinhour; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 9 页,共 12 页 - - - - - - - - - cinminute; cinsec; void Time:show_time() couthour:minute:secendl; int main() Time t1; _5_show_time(); /输出 t1 时间Time t2; _6_show_time(); /输出 t2 时间return 0; 3. #include using namespace std; class Complex public: Complex()real=0;imag=0; Complex(double r,double i)real=r;imag=i; _7_ (Complex &c2); /运算符 +重载为成员函数_8_ (ostream&,Complex&); /运算符 重载为友元函数private: double real; double imag; ; _9_ (Complex &c2) return Complex(real+c2.real,imag+c2.imag); _10_ (ostream& output,Complex& c) output(c.real+c.imagi)endl; return _11_; int main() Complex c1(2,4),c2(6,10),c3; c3=c1+c2; coutc3; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 10 页,共 12 页 - - - - - - - - - system(pause); return 0; 4. #include #include using namespace std; class S tudent /声明基类public: /公用部分Student(int n,string nam,char s ) /基类构造函数num=n; name=nam; sex=s; _12_ ( ) /基类析构函数protected: /保护部分int num; string name; char sex ; /基类析构函数; class S tudent1: public Student /声明公用派生类Student1 public: Student1(int n,string nam,char s,int a,char ad) : _13_,age(a) /派生类构造函数age=a; /在函数体中只对派生类新增的数据成员初始化addr=ad; void show( ) coutnum: numendl; coutname: nameendl; coutsex: sexendl; coutage: ageendl; coutaddress: addrendlendl; Student1( ) /派生类析构函数private: /派生类的私有部分int age; string addr; ; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 11 页,共 12 页 - - - - - - - - - 5. #include using namespace std; /声明抽象基类Shape class Shape public: virtual float area() const return 0.0; /虚函数virtual float volume() const return 0.0; /虚函数_14_void shapeName() const _15_; /纯虚函数; /声明 Point类class Point:public Shape /Point 是 Shape 的公用派生类public: Point(float=0,float=0); void setPoint(float,float); float getX() const return x; float getY() const return y; _16_void shapeName() const coutPoint:; /对纯虚函数进行定义protected: float x,y; ; Point:Point(float a,float b) x=a;y=b; void Point:setPoint(float a,float b) x=a;y=b; /声明 Circle 类class Circle:public Point public: Circle(float x=0,float y=0,float r=0); void setRadius(float); float getRadius() const; virtual float area() const; virtual void shapeName() const coutCircle:; /对纯虚函数进行再定义protected: float radius; ; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 12 页,共 12 页 - - - - - - - - -

    注意事项

    本文(2022年2022年根据程序代码片段及运行结果进行程序填空 .pdf)为本站会员(C****o)主动上传,淘文阁 - 分享文档赚钱的网站仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知淘文阁 - 分享文档赚钱的网站(点击联系客服),我们立即给予删除!

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




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

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

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

    收起
    展开