收藏 分销(赏)

2021年c编程题题库.doc

上传人:二*** 文档编号:4509539 上传时间:2024-09-26 格式:DOC 页数:36 大小:47.04KB
下载 相关 举报
2021年c编程题题库.doc_第1页
第1页 / 共36页
亲,该文档总共36页,到这儿已超出免费预览范围,如果喜欢就下载吧!
资源描述

1、1.1编写一种基于对象程序,规定:(1)定义一种时间类Time,类内有私有数据成员hour(小时)、minute(分钟)、sec(秒),公有成员函数set_time()、show_time()。(2)set_time()函数和show_time()函数在类内定义。set_time()作用是从键盘输入时间、分钟、秒值,show_time()作用是在屏幕上显示时间、分钟、秒值。(3)在main()函数定义Time类对象t1,并调用set_time()函数给时间赋值,调用show_time()函数输出时间值。#include using namespace std;class Time public

2、: void set_time() cinhour; cinminute; cinsec; void show_time() couthour:minute:secendl; private: int hour; int minute; int sec; ;int main() Time t1; t1.set_time(); t1.show_time(); return 0; 1.2编写一种基于对象程序,求长方体体积,规定:(1)定义一种长方体类Box,类内有私有数据成员lengh(长)、width(宽)、height(高),公有成员函数get_value()、volume()。(2)get_

3、value()函数和volume()函数在类外定义。get_value()作用是从键盘输入长、宽、高值,volume()作用是计算长方体体积并在屏幕上显示。(3)在main()函数定义Box类对象box1,并调用get_value()函数给长、宽、高赋值,调用volume()函数输出长方体体积。#include using namespace std;class Boxpublic: void get_value(); void volume(); private: float lengh; float width; float height; ;void Box:get_value() co

4、utlengh; cinwidth; cinheight;void Box:volume() coutvolmue of box1 is lengh*width*heightendl;int main()Box box1; box1.get_value(); box1.volume(); return 0;1.3.编写一种基于对象程序,求一种有十个数据整型数组中元素最大值,规定:(1)定义一种类Array_max,类内有私有数据成员array10、max分别存储十个整数、最大值,公有成员函数set_value()、max_volume()。(2)set_value()函数和max_volume

5、()函数在类外定义。get_value()作用是从键盘输入数组十个元素值,max_volume()作用是求出并显示数组元素最大值。(3)在main()函数定义Array_max类对象arrmax,并调用set_value()函数给数组赋值,调用max_volume()函数求出并显示数组元素最大值。#include using namespace std;class Array_maxpublic: void set_value(); void max_value(); private: int array10; int max;void Array_max:set_value() int i;

6、 for (i=0;iarrayi; void Array_max:max_value() int i; max=array0; for (i=1;imax) max=arrayi; coutmax=max; int main() Array_max arrmax; arrmax.set_value(); arrmax.max_value(); return 0; 1.4编写一种程序,用成员函数重载运算符“+”,使之能用于两个复数相加。#include using namespace std;class Complex public: Complex()real=0;imag=0; Compl

7、ex(double r,double i)real=r;imag=i; Complex operator + (Complex &c2); void display(); private: double real; double imag; ;Complex Complex:operator + (Complex &c2)Complex c; c.real=real+c2.real; c.imag=imag+c2.imag;return c; void Complex:display()cout(real,imagi)endl;int main()Complex c1(3,4),c2(5,-1

8、0),c3; c3=c1+c2; coutc1=;c1.display(); coutc2=;c2.display(); coutc1+c2=;c3.display(); return 0;1.5编写一种程序,用友元函数重载运算符“+”,使之能用于两个复数相加。#include class Complex public: Complex()real=0;imag=0; Complex(double r)real=r;imag=0; Complex(double r,double i)real=r;imag=i; friend Complex operator+ (Complex &c1,Com

9、plex &c2); void display(); private: double real; double imag; ;Complex operator+ (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(); coutc2=;c2.display(); coutc1+

10、c2=;c3.display(); return 0;1.6 编写一种基于对象程序,求圆球体积,规定:(1)定义一种圆球类Circle,类内有私有数据成员radius(半径),公有成员函数get_value()、volume()。(2)get_value()函数和volume()函数在类外定义。get_value()作用是从键盘输入半径值,volume()作用是计算圆球体积并在屏幕上显示。(圆球体积计算公式为:v=4/3r3)(3)在main()函数定义Circle类对象circle1,并调用get_value()函数给球半径赋值,调用volume()函数输出圆球体积。#include usi

11、ng namespace std;class Circlepublic: void get_value(); void volume(); private: float radius; ;void Circle:get_value() coutradius;void Circle:volume() coutvolmue of circle1 is 4.0/3*3.14159*radius*radius*radiusendl;int main()Circle circle1; circle1.get_value(); circle1.volume(); return 0;1.7 编写一种基于对象

12、程序,规定:(1)定义一种日期类Date,类内有私有数据成员year(年)、month(月)、day(日),公有成员函数set_date()、show_date()。(2)set_date()函数和show_date()函数在类外定义。set_date()作用是从键盘输入年、月、日值,show_date()作用是在屏幕上显示年、月、日值。(3)在main()函数定义Date类对象d1,并调用set_ date()函数给日期赋值,调用show_date()函数输出日期值。#include using namespace std;class Date public: void set_date()

13、; void show_date(); private: int year; int month; int day; ;void Date:set_date() cinyear; cinmonth; cinday; void Date:show_date() coutyear-month-dayendl;int main() Date d1; d1.set_date(); d1.show_date(); return 0; 2.1编写一种面向对象程序,规定:(1)定义一种基类Student,类内有私有数据成员num(学号)、name(姓名)、sex(性别),公有成员函数get_value()、

14、display(),get_value()作用是从键盘给num、name、sex赋值,display()作用是显示num、name、sex值。(2)定义一种派生类Student1,Student1公有继承自Student类。Student1类新增私有数据成员age(年龄)、addr(地址),新增公有成员函数get_value_1()、display_1()。get_value_1()作用是实现从键盘给num、name、sex、age、addr赋值,display_1()作用是显示num、name、sex、age、addr值。(3)在main()函数定义Student1类对象stud1,并调用g

15、et_value_1()函数给对象赋值,调用display_1()函数显示学生所有信息。#include using namespace std;class Studentpublic: void get_value() cinnumnamesex; void display( ) coutnum:numendl; coutname:nameendl; coutsex:sexageaddr; void display_1() display(); coutage:ageendl; coutaddress:addrendl; private: int age; char addr30; ; in

16、t main() Student1 stud1; stud1.get_value_1(); stud1.display_1(); return 0;2.2编写一种面向对象程序,规定:(1)定义一种基类Student,类内有私有数据成员num(学号)、name(姓名)、sex(性别),公有成员函数get_value()、display(),get_value()作用是从键盘给num、name、sex赋值,display()作用是显示num、name、sex值。(2)定义一种派生类Student1,Student1私有继承自Student类。Student1类新增私有数据成员age(年龄)、add

17、r(地址),新增公有成员函数get_value_1()、display_1()。get_value_1()作用是实现从键盘给num、name、sex、age、addr赋值,display_1()作用是显示num、name、sex、age、addr值。(3)在main()函数定义Student1类对象stud1,并调用get_value_1()函数给对象赋值,调用display_1()函数显示学生所有信息。#include using namespace std;class Studentpublic: void get_value() cinnumnamesex; void display(

18、) coutnum:numendl; coutname:nameendl; coutsex:sexageaddr; void display_1() display(); coutage:ageendl; coutaddress:addrendl; private: int age; char addr30; ; int main() Student1 stud1; stud1.get_value_1(); stud1.display_1(); return 0;2.3 编写一种面向对象程序,规定:(1)定义一种基类Student,类内有私有数据成员num(学号)、name(姓名)、sex(性

19、别),公有成员函数get_value()、display(),get_value()作用是从键盘给num、name、sex赋值,display()作用是显示num、name、sex值。(2)定义一种派生类Student1,Student1保护继承自Student类。Student1类新增私有数据成员age(年龄)、addr(地址),新增公有成员函数get_value_1()、display_1()。get_value_1()作用是实现从键盘给num、name、sex、age、addr赋值,display_1()作用是显示num、name、sex、age、addr值。(3)在main()函数定义

20、Student1类对象stud1,并调用get_value_1()函数给对象赋值,调用display_1()函数显示学生所有信息。#include using namespace std;class Studentpublic: void get_value() cinnumnamesex; void display( ) coutnum:numendl; coutname:nameendl; coutsex:sexageaddr; void display_1() display(); coutage:ageendl; coutaddress:addrendl; private: int a

21、ge; char addr30; ; int main() Student1 stud1; stud1.get_value_1(); stud1.display_1(); return 0;2.4编写一种面向对象程序,规定:(1)定义一种基类Student,类内有保护数据成员num(学号)、name(姓名)、sex(性别),公有成员涉及构造函数、show()函数。构造函数带3个参数用于定义对象时赋初值,show()函数作用是显示学生信息,即num、name、sex值。(2)定义一种派生类Student1,Student1公有继承自Student类。Student1类新增私有数据成员age(年龄

22、)、addr(地址),新增公有成员涉及构造函数、show()函数。构造函数带5个参数用于定义对象时赋初值,show()函数作用是显示学生信息,即num、name、sex、age、addr值。(3)在main()函数定义Student1类对象stud1并赋初值,调用show()函数显示该学生所有信息。#include #includeusing namespace std;class Student public: Student(int n,string nam,char s ) num=n; name=nam; sex=s; void show( ) coutnum:numendl; cou

23、tname:nameendl; coutsex:sexendl; protected: int num; string name; char sex ; ;class Student1:public Student public: Student1(int n,string nam,char s,int a,char ad) :Student(n,nam,s) age=a; addr=ad; void show( ) Student:show(); coutage:ageendl; coutaddress:addrendlendl; private: int age; string addr;

24、 ; int main( ) Student1 stud1(10010,Wang-li,f,19,115 Beijing Road,Shanghai); stud1.show( ); return 0;2.5编写一种面向对象程序,规定:(1)定义一种基类Student,类内有保护数据成员num(学号)、name(姓名),公有成员涉及构造函数、show()函数。构造函数带2个参数用于定义对象时赋初值,show()函数作用是显示学生信息,即num、name值。(2)定义一种派生类Student1,Student1公有继承自Student类。Student1类新增私有数据成员age(年龄)、addr

25、(地址)以及子对象monitor(班长,Student类型),新增公有成员涉及构造函数、show()函数。构造函数带6个参数用于定义对象时赋初值,show()函数作用是显示学生所有信息,即本人num、name、age、addr以及班长num、name。(3)在main()函数定义Student1类对象stud1并赋初值,调用show()函数显示该学生所有信息。#include #includeusing namespace std;class Student public: Student(int n,string nam) num=n; name=nam; void show( ) cout

26、num:numendl; coutname:nameendl; protected: int num; string name; ;class Student1:public Student public: Student1(int n,string nam,int n1,string nam1,int a,string ad) :Student(n,nam),monitor(n1,nam1) age=a; addr=ad; void show( ) coutThis student is:endl; Student:show(); coutage:ageendl; coutaddress:a

27、ddrendlendl; coutClass monitor is:endl; monitor.show(); private: Student monitor; int age; string addr; ; int main( ) Student1 stud1(10010,Wang-li,10001,Li-sun,19,115 Beijing Road,Shanghai); stud1.show( ); return 0;2.6 写一种面向对象程序,定义抽象基类Shape,由它派生出2个类:Circle(圆形)、Rectangle(矩形),显示两个图形面积。规定:(1)抽象基类Shape公

28、有成员有纯虚函数area()。(2)Circle类公有继承自Shape类,新增数据成员radius(半径),公有成员有构造函数和求圆面积area()函数。(3)Rectangle类公有继承自Shape类,新增数据成员length(长)、width(宽),公有成员有构造函数和求矩形面积area()函数。(4)在main()函数定义Circle类对象circle1并赋初值,调用area()函数显示该圆面积;定义Rectangle类对象rectangle1并赋初值,调用area()函数显示该矩形面积。#include using namespace std;class Shapepublic: vi

29、rtual double area() const =0; ;class Circle:public Shapepublic:Circle(double r):radius(r) virtual double area() const return 3.14159*radius*radius;; protected: double radius; ;class Rectangle:public Shapepublic: Rectangle(double l,double w):length(l),width(w) virtual double area() const return lengt

30、h*width; protected: double length,width; ;int main() Circle circle(2.5); coutarea of circle =circle.area()endl; Rectangle rectangle(2,4); coutarea of rectangle =rectangle.area()endl; return 0;2.7写一种面向对象程序,定义抽象基类Shape,由它派生出2个类:Square(正方形)、Triangle(三角形),显示两个图形面积。规定:(1)抽象基类Shape公有成员有纯虚函数area()。(2)Squar

31、e类公有继承自Shape类,新增数据成员side(边长),公有成员有构造函数和求正方形积area()函数。(3)Triangle类公有继承自Shape类,新增数据成员side(边长)、height(高),公有成员有构造函数和求三角形面积area()函数。(4)在main()函数定义Square类对象square1并赋初值,调用area()函数显示该正方形面积;定义Triangle类对象triangle1并赋初值,调用area()函数显示该三角形面积。#include using namespace std;class Shapepublic: virtual double area() con

32、st =0; ;class Square:public Shapepublic: Square(double s):side(s) virtual double area() const return side*side; protected: double side;class Triangle:public Shapepublic: Triangle(double s,double h):side(s),height(h) virtual double area() const return 0.5*side*height; protected: double side,height; ;int main() Square square1(2.5); coutarea of square =square1.area()endl; Triangle triangle1(2,3); coutarea of triangle =triangle1.area()endl; return 0;

展开阅读全文
部分上传会员的收益排行 01、路***(¥15400+),02、曲****(¥15300+),
03、wei****016(¥13200+),04、大***流(¥12600+),
05、Fis****915(¥4200+),06、h****i(¥4100+),
07、Q**(¥3400+),08、自******点(¥2400+),
09、h*****x(¥1400+),10、c****e(¥1100+),
11、be*****ha(¥800+),12、13********8(¥800+)。
相似文档                                   自信AI助手自信AI助手
搜索标签

当前位置:首页 > 考试专区 > 其他

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        获赠5币

©2010-2024 宁波自信网络信息技术有限公司  版权所有

客服电话:4008-655-100  投诉/维权电话:4009-655-100

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :gzh.png    weibo.png    LOFTER.png 

客服