欢迎来到天天文库
浏览记录
ID:16648552
大小:1.91 MB
页数:19页
时间:2018-08-23
《c++第九周上机 - 副本》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、第九周实验内容函数与预处理—1完成下面实验内容,将程序清单或运行结果截图复制到实验作业文档中。以“学号_姓名”命名此实验作业文档。在截止时间前上传至课程中心。注:本次作业的选做题有加分!作业上传方式:登录课程中心,进入“C++程序设计-黄晓璐”课堂(重修生请注意任课教师,不要选错了!)。查看课程作业,在相应作业的最右侧点击“提交作业”将完成的作业文档上传即可。(若遇到无法上传的情况,请使用Chrome浏览器进行上传操作!当作业上传后,可在相应作业的最右侧看到“查看”按钮,可单击此按钮查看作业是否上传成功!)一、实验内容和实验要求1.练习
2、题一⑴编写程序实现判断一个数是否为素数的功能。⑵要求①编写一个函数,完成判断素数的功能。②在主函数输入一个整数,输出是否是素数的信息。⑶思路①主函数中键盘输入一个整数,并作为实参传递给素数判断函数。②素数判断函数中,使用穷举法进行素数判断,函数的返回值作为是否为素数的标志。③主函数中根据素数判断函数的返回值,输出是否为素数的信息。⑷程序代码#includeusingnamespacestd;intprime(intn);//函数声明intmain(){intm;printf("输入一个整数:");cin>>m;if(
3、prime(m))/*根据prime函数的返回值输出相应信息*/cout<4、ecretaryoftheSpecialCommitteeAfterthevictoryofthelongMarch,hehasbeentheNorthwestOfficeoftheFederationofStateenterprisesMinister,ShenmufuguSARmissions,DirectorofNingxiaCountypartyCommitteeSecretaryandrecorderoftheCountypartyCommitteeSecretary,Ministersandprime(intn)/*素数判断5、函数*/{inti;for(i=2;i<=n-1;i++)if(n%i==0)break;if(i==n)return1;/*输入数据是素数*/elsereturn0;/*输入数据不是素数*/}⑸运行结果⑹思考题及问题如果要求按每行5个数的格式输出200~300中所有素数,如何修改主函数?主函数修改后代码:#includeusingnamespacestd;intprime(intn);//函数声明intmain(){intm;for(m=200;m<=300;m++)if(prime(m))/*根据prime函数的6、返回值输出相应信息*/cout<7、teeSecretary.Startingin1939servedasrecorderoftheWestNorthOrganization,SecretaryoftheSpecialCommitteeAfterthevictoryofthelongMarch,hehasbeentheNorthwestOfficeoftheFederationofStateenterprisesMinister,ShenmufuguSARmissions,DirectorofNingxiaCountypartyCommitteeSecretaryandr8、ecorderoftheCountypartyCommitteeSecretary,Ministersand运行结果:2.练习题二⑴求两个正整数的最大公约数和最小公倍数。⑵要求编写两个函数,分别求最大公约数
4、ecretaryoftheSpecialCommitteeAfterthevictoryofthelongMarch,hehasbeentheNorthwestOfficeoftheFederationofStateenterprisesMinister,ShenmufuguSARmissions,DirectorofNingxiaCountypartyCommitteeSecretaryandrecorderoftheCountypartyCommitteeSecretary,Ministersandprime(intn)/*素数判断
5、函数*/{inti;for(i=2;i<=n-1;i++)if(n%i==0)break;if(i==n)return1;/*输入数据是素数*/elsereturn0;/*输入数据不是素数*/}⑸运行结果⑹思考题及问题如果要求按每行5个数的格式输出200~300中所有素数,如何修改主函数?主函数修改后代码:#includeusingnamespacestd;intprime(intn);//函数声明intmain(){intm;for(m=200;m<=300;m++)if(prime(m))/*根据prime函数的
6、返回值输出相应信息*/cout<7、teeSecretary.Startingin1939servedasrecorderoftheWestNorthOrganization,SecretaryoftheSpecialCommitteeAfterthevictoryofthelongMarch,hehasbeentheNorthwestOfficeoftheFederationofStateenterprisesMinister,ShenmufuguSARmissions,DirectorofNingxiaCountypartyCommitteeSecretaryandr8、ecorderoftheCountypartyCommitteeSecretary,Ministersand运行结果:2.练习题二⑴求两个正整数的最大公约数和最小公倍数。⑵要求编写两个函数,分别求最大公约数
7、teeSecretary.Startingin1939servedasrecorderoftheWestNorthOrganization,SecretaryoftheSpecialCommitteeAfterthevictoryofthelongMarch,hehasbeentheNorthwestOfficeoftheFederationofStateenterprisesMinister,ShenmufuguSARmissions,DirectorofNingxiaCountypartyCommitteeSecretaryandr
8、ecorderoftheCountypartyCommitteeSecretary,Ministersand运行结果:2.练习题二⑴求两个正整数的最大公约数和最小公倍数。⑵要求编写两个函数,分别求最大公约数
此文档下载收益归作者所有