}
floatpx(floatx,intn)
{floatp;
if(n==1)
p=x;
else
p=px(x,n-1)-pow(-1,n)*pow(x,n);
returnp;
}
程序运行结果:
pleaseinputx,n:
24
px=-10
二、类与对象的定义与使用
(1)定义一个复数类Complex,复数的实部Real与虚部Image定义为私有数据成员。
用复数类定义复数对象c1、c2、c3,用默认构造函数将c1初始化为c1=20+40i,将c2初始化为c2=0+0i,用拷贝构造函数将c3初始化为c3=20+40i。
用公有成员函数Dispaly()显示复数c1、c2与c3的内容。
(2)定义一个学生成绩类Score,描述学生成绩的私有数据成员为学号(No)、姓名(Name[8])、数学(Math)、物理(Phi)、数据结构(Data)、平均分(ave)。
定义能输入学生成绩的公有成员函数Write(),能计算学生平均分的公有成员函数Average(),能显示学生成绩的公有成员函数Display()。
在主函数中用Score类定义学生成绩对象数组s[3]。
用Write()输入学生成绩,用Average()计算每个学生的平均分,最后用Display()显示每个学生的成绩。
实验数据:
NoNameMathPhiDataAve
1001Zhou807060
1002Chen908085
1003Wang707589
(3)定义一个矩形类Rectangle,矩形的左上角(Left,Top)与右下角坐标(Right,Bottom)定义为保护数据成员。
用公有成员函数Diagonal()计算出矩形对角线的长度,公有成员函数Show()显示矩形左上角与右下角坐标及对角线长度。
在主函数中用new运算符动态建立矩形对象r1,初值为(10,10,20,20)。
然后调用Show()显示矩形左上角与右下角坐标及对角线长度。
最后用delete运算符回收为矩形动态分配的存储空间。
解答参考
(1)
#include
classComplex
{private:
floatReal,Image;
public:
Complex(floatr,floati)//定义有参构造函数
{Real=r;
Image=i;
}
Complex(Complex&c)//定义拷贝构造函数
{Real=c.Real;
Image=c.Image;
}
Complex()//定义无参构造函数
{Real=0;
Image=0;
}
voidDisplay()
{cout<};
voidmain(void)
{Complexc1(10,20),c2,c3(c1);
c1.Display();
c2.Display();
c3.Display();
}
程序运行结果:
10+20i
0+0i
10+20i
(2)
#include
#include
classScore
{private:
intNo;
charName[8];
floatMath,Phi,Data,Ave;
public:
voidWrite(intno,charname[],floatmath,floatphi,floatdata)
{No=no;
strcpy(Name,name);
Math=math;
Phi=phi;
Data=data;
}
voidAverage(void)
{Ave=(Math+Phi+Data)/3;}
voidDisplay()
{cout<cout<}
};
voidmain(void)
{inti,no;
charname[8];
floatmath,phi,data;
Scores[3];
cout<<"Input3studentdata"<<'\n';
for(i=0;i<3;i++)
{
cin>>no>>name>>math>>phi>>data;
s[i].Write(no,name,math,phi,data);
s[i].Average();
}
cout<<"学号姓名数学物理数据结构平均分\n";
for(i=0;i<3;i++)
s[i].Display();
}
程序运行结果:
Input3studentdata
1001Zhou807060
1002Chen908085
1003Wang707589
学号姓名数学物理数据结构平均分
1001Zhou80706070
1002Chen90808585
1003Wang70758978
(3)
#include
#include
classRectangle
{protected:
floatLeft,Top;
floatRight,Bottom;
public:
Rectangle(floatl,floatt,floatr,floatb)
{Left=l;Top=t;
Right=r;Bottom=b;
}
Rectangle(Rectangle&R)
{Left=0;Top=0;
Right=R.Right;Bottom=R.Bottom;
}
doubleDiagonal()
{returnsqrt((Left-Right)*(Left-Right)+(Top-Bottom)*(Top-Bottom));}
voidShow()
{cout<<"(Left,Top)=("<cout<<"(Right,Bottom)=("<cout<<"Diagonal="<}
};
voidmain(void)
{Rectangle*r1=newRectangle(10,10,20,20);
r1->Show();
deleter1;
}
程序运行结果:
(Left,Top)=(10,10)
(Right,Bottom)=(20,20)
Diagonal=14.1421
三、类的继承
(1)定义描述职工档案的类Archives,私有数据成员为职工号(No)、姓名(Name[8])、性别(Sex)、年龄(Age)。
成员函数有:
构造函数、显示职工信息的函数Show()。
再由职工档案类派生出职工工资类Laborage,在职工工资类Laborage中新增数据成员:
应发工资(SSalary)、社保金(Security)、实发工资(Fsalary),其成员函数有:
构造函数,计算实发工资的函数Count(),计算公式为:
实发工资=应发工资-社保金。
显示职工档案及工资的函数Display()。
在主函数中用Laborage类定义职工对象lab,并赋初始值(1001,”Cheng”,’M’,21,2000,100),然后显示职工档案与工资。
(2)定义描述矩形的类Rectangle,其数据成员为矩形的中心坐标(X,Y)、长(Length)与宽(Width)。
成员函数为计算矩形面积的函数Area()与构造函数。
再定义描述圆的类Circle,其数据成员为圆的中心坐标(X,Y)与半径R,其成员函数为构造函数。
再由矩形类与圆类多重派生出长方体类Cuboid,其数据成员为长方体的高(High)与体积(Volume)。
成员函数为:
构造函数,计算体积的函数Vol(),显示矩形坐标(X,Y)、长方体的长、宽、高与体积的函数Show()。
主函数中用长方体类定义长方体对象cub,并赋初始值(10,10,10,20,30,30,10,10),最后显示长方体的矩形坐标(X,Y)与长方体的长、宽、高与体积。
(3)定义个人信息类Person,其数据成员有姓名、性别、出生年月。
并以Person为基类定义一个学生的派生类Student,增加描述学生的信息:
班级、学号、专业、英语成绩和数学成绩。
再由基类Person定义一个职工的派生类Employee,增加描述职工的信息:
部门、职务、工资。
编写程序实现学生与职工信息的输入与输出。
解答参考
(1)
#include
#include
classArchives
{private:
intNo;
charName[8];
charSex;
intAge;
public:
Archives(intn,charname[],chars,inta)
{No=n;
strcpy(Name,name);
Sex=s;
Age=a;
}
voidShow(void)
{cout<<"No="<<<"Sex="<}
};
classLaborage:
publicArchives
{private:
floatSSalary,Security,Fsalary;
public:
Laborage(intn,charname[],chars,inta,floatss,floatse):
Archives(n,name,s,a)
{SSalary=ss;
Security=se;
}
voidCount()
{
Fsalary=SSalary-Security;
}
voidDisplay(void)
{Show();
cout<<"SSalary="<<<'\t'<<"Fsalary="<}
};
voidmain(void)
{Laboragelab(1001,"Zhou",'M',52,2000,200);
lab.Count();
lab.Display();
}
程序运行结果:
No=1001Name=ZhouSex=MAge=52
SSalary=2000Security=200Fsalary=1800
(2)
#include
#definePI3.14159
classRectangle//定义一个长方体类
{protected:
floatLength,Width;
floatCenterx,Centery;
public:
Rectangle(floatl,floatw,floatx,floaty)
{Length=l;
Width=w;
Centerx=x;
Centery=y;
}
floatArea(void)
{returnLength*Width;}
};
classCircle//定义一个圆形类
{protected:
floatradius;
floatCenterx,Centery;
public:
Circle(floatr,floatx,floaty)
{radius=r;
Centerx=x;
Centery=y;
}
doubleArea(void)
{returnradius*radius*PI;}
};
classCuboid:
publicRectangle,publicCircle//由基类Rectangle、Circle派生出类Cuboid
{private:
floatHigh;
doubleRVolume,CVolume;
public:
Cuboid(floatl,floatw,floatx1,floaty1,floatr,floatx2,floaty2,floath):
Rectangle(l,w,x1,y1),Circle(r,x2,y2)
{High=h;}
voidVol(void)//分别计算长方体和圆柱体的体积
{RVolume=Rectangle:
:
Area()*High;
CVolume=Circle:
:
Area()*High;
}
voidShow(void)//分别显示长方体和圆柱体的信息
{cout<<"Length="<<<"High="<cout<<"RectangleCentercoordinate="<:
Centerx<<','
<:
Centery<<'\n';
Vol();
cout<<"CuboidVolume="<cout<<"Radius="<cout<<"CircleCentercoordinate="<:
Centerx<<','
<:
Centery<<'\n';
cout<<"CylinderVolume="<}
};
voidmain(void)
{Cuboidcub(10,10,10,20,30,30,10,10);
cub.Show();
}
程序运行结果:
Length=10Width=10High=10
RectangleCentercoordinate=10,20
RectangleVolume=1000
Radius=30High=10
CircleCentercoordinate=30,10
CircleVolume=28274.3
(3)
#include
#include
classPerson
{private:
charName[8];
charSex;
charBirth[10];
public:
Person()
{}
Person(charname[],charsex,charbirth[])
{strcpy(Name,name);
Sex=sex;
strcpy(Birth,birth);
}
voidShow()
{cout<cout<}
};
classStudent:
publicPerson
{private:
charSclass[10];
intNo;
charMajor[10];
floatEng,Math;
public:
Student():
Person()
{}
Student(charname[],charsex,charbirth[],charsclass[],intno,charmajor[],floateng,floatmath):
Person(name,sex,birth)
{strcpy(Sclass,sclass);
No=no;
strcpy(Major,major);
Eng=eng;
Math=math;
}
voidPrint()
{Person:
:
Show();
cout<cout<}
};
classEmployee:
publicPerson
{private:
charDepartment[10];
charTitle[10];
floatSalary;
public:
Employee():
Person()
{}
Employee(charname[],charsex,charbirth[],chardepartment[10],chartitle[10],
floatsalary):
Person(name,sex,birth)
{strcpy(Department,department);
strcpy(Title,title);
Salary=salary;
}
voidPrint()
{Person:
:
Show();
cout<cout<
}
};
voidmain(void)
{intno;
charname[8],sex,birth[10],major[10],class1[10],depa[10],title[10];
floateng,math,salary;
Student*s;
Employee*e;
cout<<"Inputastudentdata"<<'\n';
cin>>name>>sex>>birth>>class1>>no>>major>>eng>>math;
s=newStudent(name,sex,birth,class1,no,major,eng,math);
cout<<"Thestudentinformation:
\n";
s->Print();
cout<<"Inputanemployeedata"<<'\n';
cin>>name>>sex>>birth>>depa>>title>>salary;
e=newEmployee(name,sex,birth,depa,title,salary);
cout<<"Theemployeeinformation:
\n";
e->Print();
}