资源描述:
《c++程序设计实践报告》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、江苏科技大学 课程实践报告 设计题目:程序设计(VC++)实践设计时间2014-3-1至2014-4-1学院(系):船舶与海洋工程专业班级:船海一班学生姓名:程尉学号1240101108指导老师:张晓如 otherstaffoftheCentre.Duringthewar,ZhuwastransferredbacktoJiangxi,andDirectorofthenewOfficeinJingdezhen,JiangxiCommitteeSecretary.Startingin1939servedasrecorderoftheW
2、estNorthOrganization,SecretaryoftheSpecialCommitteeAfterthevictoryofthelongMarch,hehasbeentheNorthwestOfficeoftheFederationofStateenterprisesMinister,ShenmufuguSARmissions,DirectorofNingxiaCountypartyCommitteeSecretaryandrecorderoftheCountypartyCommitteeSecretary,Minister
3、sand实践任务一(第1题)一、程序设计基本题试建立一个类PP,求出下列多项式的前n项的值。1n=0Pn(x)=xn=1((2n-1)xPn-1(x)-(n-1)Pn-2(x))n>1具体要求如下:(1)私有数据成员lintn:前若干项的项数。ldoublex:存放x的值。ldouble*p:根据n的大小动态申请存放Pn(x)前n项的数组空间。(2)共有成员函数lPP(intnum,doublex1):构造函数,初始化数据成员n和x,使p指向动态申请的数据空间。l~PP():析构函数,释放p指向的动态内存空间。ldoublefun(int
4、n1,doublex):递归函数,用于求多项式Pn(x)的第n1项。注意:将递归公式中的n用作函数参数。本函数供process函数调用。lvoidprocess():完成求前n项的工作,并将它们存放发到p指向的动态数组中。lvoidshow():输出n和x,并将前n项以每行4个数的形式输出到屏幕上。(3)在主函数中完成对该类的测试。先输入num和x1,并定义一个PP类的对象items,用num和x1初始化items的成员n和x,调用items的成员函数,并输出多项式前num项的值。二、系统设计1、概要设计通过类PP的成员函数process
5、()来求多项式Pn(x)的前n项的值,其中用fun()函数来求第n项的值,根据n的大小来给数据成员p分配动态空间,程序结束前释放为items分配的动态空间。2、详细设计①类的定义如下:classPP{intn;doublex;double*p;public:PP(intnum,doublex1){}voidprocess(){}voidshow(){}};②类的主要成员函数的设计doublefun(intn1,doublex)//设计函数来求Pn(x){otherstaffoftheCentre.Duringthewar,Zhuwastr
6、ansferredbacktoJiangxi,andDirectorofthenewOfficeinJingdezhen,JiangxiCommitteeSecretary.Startingin1939servedasrecorderoftheWestNorthOrganization,SecretaryoftheSpecialCommitteeAfterthevictoryofthelongMarch,hehasbeentheNorthwestOfficeoftheFederationofStateenterprisesMinister
7、,ShenmufuguSARmissions,DirectorofNingxiaCountypartyCommitteeSecretaryandrecorderoftheCountypartyCommitteeSecretary,Ministersandif(n1==0)return1;elseif(n1==1)returnx;return((2*n1-1)*x*fun(n1-1,x)-(n1-1)*fun(n1-2,x))/n1;}三、系统测试用以测试的数据为:34预期的输出结果为:n=3x=41423.5154四、实践小结这道题主要是
8、把题目看懂,其实只是一些简单的函数定义而已。五、参考文献[1]潘克勤,华伟,VisualC++程序设计北京:中国铁道出版社2008六、源程序清单#includeclas