- 1、本文档共24页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
c 第四版各实验代码
实验一 函数
一、实验目的及要求
1.掌握函数的定义和调用方法。
2.练习重载函数的使用。
二、实验环境
硬件:计算机 软件:Microsoft Visual C++
三、实验内容
1. 编写重载函数Max1可分别求取两个整数,三个整数,两个双精度数,三个双精度数的
最大值。
2. 用递归的方法编写函数求Fibonacci数。
( )
四、实验结果 附截图
1
五、总结
通过这次的实验学习了函数的定义和调用的方法以及重载函数、递归函数的使用。在实
验中我体会到亲手编写、调式一个程序的重要性,一个好的程序需要不断的调式和修改。通
过不断地编程可以加强自己的编程思想和编程能力。希望在每次的实验中都能找出自己的不
足之处,提升自己的能力!
六、附录 (源程序清单)
程序一:
#includeiostream
using namespace std;
int Maxl(int x,int y)
{
if(x y)
return x;
return y;
}
double Maxl(double x,double y)
{
if(x y)
return x;
else
return y;
}
int Maxl(int x,int y,int z)
2
{
int temp;
if(xy)
temp x;
else temp y;
if(tempz)
return temp;
return z;
}
double Maxl(double x,double y,double z)
{
double temp;
if(xy)
temp x;
else temp y;
if(tempz)
return temp;
return z;
}
int main()
{
double max;
int a,b,c;
double m,n,p;
coutEnter two int number:endl;
cinab;
max Maxl(a,b);
coutmax maxendl;
coutEnter two double number:endl;
cinmn;
max Maxl(m,n);
coutmax maxendl;
coutEnter three int number:endl;
3
cinabc;
max Maxl(a,b,c);
coutmax maxendl;
coutEnter three double number:endl;
cinmnp;
max Maxl(m,n,p);
coutmax maxendl;
}
程序二:
#includeiostream
using namespace std;
int fib(int n)
{
int f;
if(n 1||n 2)
f 1;
else
f fib(n-1)+fib(n-2);
return f;
}
int main()
{
int i, n,fibonacci;
coutEnter the number n:;
cinn;
文档评论(0)