- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
实验4多文件结构及静态成员及对象数组的使用
实验4 多文件结构及静态成员和对象数组的使用
一、实验目的
1、掌握自定义头文件的方法;
2、学会建立和调试多文件程序;
3、了解静态成员的使用;
4、掌握对象数组的使用。
二、实验内容
1、编写一个函数,求数列运算中从n个不同的数中取r个数的所有选择的个数。
要求:
(1)()()()#ifndef cnr_h
#define cnr_h
int cnr(int ,int );
#endif
//以下是cnr.cpp
#include cnr.h;
int cnr(int n,int r)
{
if(n==r)
return 1;
else if(r==1)
return n;
else return cnr(n-1,r)+cnr(n-1,r-1);
}
//以下是main.cpp
#includeiostream.h
#includecnr.h;
void main()
{
int n,r;
coutPlease input n,r:endl;
cinnr;
coutC(n,r)为cnr(n,r)endl;
}
2.
//以下是employee.h
#ifndef employee_h
#define employee_h
class employee
{
public:
employee(int,char *,char,int);
~employee();
void setemployee(int,char*,char,int);
void print();
private:
static int basenum;
int num;
char * name;
char sex;
int wage;
};
#endif
//以下是employee.cpp
#include employee.h
#includeiostream.h
#includestring.h
#includeassert.h
int employee::basenum=10;
employee::employee(int nu,char * na,char s,int w)
{
name=new char[strlen(na)+1];
assert(name!=0);
strcpy(name,na);
num=nu+basenum;
sex=s;
wage=w;
}
employee::~employee()
{
delete [] name;
}
void employee::setemployee(int nu,char *na,char s,int w)
{
delete [] name;
name=new char[strlen(na)+1];
assert(name!=0);
strcpy(name,na);
num=nu+basenum;
sex=s;
wage=w;
}
void employee::print()
{
coutnum:num\tname:nameendlsex:sex\twage:wageendl;
}
//以下是main.cpp
#includeiostream.h
#includeemployee.h;
void main()
{
employee num1(2,oo,q,5000),num2(3,rr,q,10000);
coutnum1:endl;
num1.print();
coutnum2:endl;
num2.print();
num1.setemployee(2,pp,a,1000);
cout(after set) num1:endl;
num1.print();
}
3.
//以下是point.h
#ifndef point_h
#define point_h
class point
{
public:
point(int=0,int=0);
~point();
void set();
void display();
double length(const point );
private:
int x;
int y;
};
#endif
//以下是point.cpp
#includeiostream.h
#includemath.h
#includepoint.h
point::point(int a,int b)
{
x=a,y=b;
cout构造了点(x,y)\t;
}
point::~point()
{
cout析构了点(x,y)\t;
}
void point::set()
{
int a,b;
coutPlease input x and yend
文档评论(0)