- 1、本文档共6页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
employee人员类实验报告
C++及其编程思想
实验报告
学号:
姓名:
班级:
日期: 2010.10.
实验目的:
1.掌握函数声明、定义和调用的方法;
3.练习重载函数的使用。
4.练习函数模板的使用。
5.学习使用VC++的debug调试功能,使用step into追踪到函数内部。 实验内容及完成情况:
1.编写重载函数Maxl分别求取两个整数,两个双精度数的最大值,并在main()函数中测试函数功能.
#includeiostream
using namespace std;
int max(int a,int b);
double max(double a,double b);
int main()
{
int i1,i2,i;
cout输入两个整数:\n;
cini1i2;
i=max(i1,i2);
couti_max=iendl;
cout输入两个双精度数:\n;
double d1,d2,d;
cind1d2;
d=max(d1,d2);
coutd_max=dendl;
return 0;
}
int max(int a,int b)
{
if(ba)
a=b;
return a;
}
double max(double a,double b)
{
if(ba)
a=b;
return a;
}
调试过程中的错误、原因及解决办法:
在进行中英文切换过程中,出现打印代码时使用中文调试出现错误;
在进行求两个双精度数的最大值时,忘记了输入语句,致使结果是随机值。
3.一个班有5名学生,每个学生修了三门课,1)求每个学生的平均成绩,并输出每个学生的学号,姓名,每门课程的成绩及平均值。2)求某门课程的平均分;
要求:
1、分别编写2个函数实现以上2个要求。
2、第1个函数用数组名作参数。第2个函数用指针用参数,并在函数体内用指针对数组操作。
3. 姓名字段采用string类型或字符数
#includeiostream
#includeiomanip
using namespace std;
struct student
{
int num;
char name[20];
float score[3];
float aver;
};
void put(struct student stu[]);
void out_average1(struct student stu[]);
void out_average2(struct student *p);
int main()
{
struct student stu[5],*p;
p=stu;
put(stu);
out_average1(stu);
out_average2(p);
return 0;
}
void put(struct student stu[ ])
{
int i;
for(i=0;i5;i++)
{
coutplease enter thei+1th students number,name,score:endl;
cinstu[i].numstu[i].namestu[i].score[0]stu[i].score[1]stu[i].score[2];
}
}
void out_average1(struct student stu[ ])
{
int i;
for(i=0;i5;i++)
{
stu[i].aver=(stu[i].score[0]+stu[i].score[1]+stu[i].score[2])/3.0;
}
cout学号 姓名 语文 数学 英语 平均成绩\n;
for(i=0;i5;i++)
{
coutsetfill( )setw(6)stu[i].num;
coutsetfill( )setw(6)stu[i].name;
coutsetfill( )setw(6)stu[i].score[0];
coutsetfill( )setw(8)stu[i].score[1];
coutsetfill( )setw(8)stu[i].score[2];
coutsetfill( )setw(8)stu[i].averendl;
}
}
void out_average2(struct student *p)
{
int i;
float sum1=0, sum2=0, sum3=0;
for(i=0;i5;i++)
{
sum1= sum1+(p+i)-s
文档评论(0)