- 1、本文档共24页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
课程设置-数字大学城
南京大学 计算机科学与技术系 Base of Programming 1/18 伪随机数的生成 #define RANDOM_MAX 65536 #include iostream using namespace std; unsigned int Random() { static unsigned int seed=1; seed = (25173*seed+13849) % RANDOM_MAX; return seed; } 许多编译器的stdlib.h头文件中定义宏RAND_MAX为32768 unsigned long int next = 1; int rand(void) { next = next * 1103515245 + 12345; return (unsigned int)(next/65536) % RAND_MAX; }//比较快地产生一组伪随机数 void srand(unsigned int seed) { next = seed; } time(0)取出的是从1970年1月1日到程序运行时系统时间的秒数 srand((int)time(0)); //NULL #includetime.h #includestdlib.h #include iostream using namespace std; int main() { int i,j; srand((int)time(0)); for(i=0;i10;i++) { j=1+(int)(10.0*rand()/RAND_MAX); cout j endl; } return 0; } 第三章书面作业 习题2:编写一个程序,将用24小时制表示的时间转换为12小时制表示的时间。例如,输入20和16(20点16分),输出8:16pm;输入8和16(8点16分),输出8:16am。 int main() { int hour, minute; char noon; cout Please input a time in 24-hour format: endl; cout hour: ; cin hour; if (hour0 || hour23) { cout The input hour is wrong! endl; return -1; } …… return 0; } if (hour12) { hour =hour - 12; noon = p; } else noon = a; cout minute: ; cin minute; if (minute0 || minute59) { cout The input minute is wrong! endl; return -1; } cout endl The time in 12-hour format is : hour : minute; if (noon == p) cout pm endl; else cout am endl; 习题3:编写一个程序,分别按正向和逆向输出小写字母a~z。 int main() { char ch; for (ch=a; ch=z; ch++) cout ch ; cout endl; for (ch=z; ch=a; ch--) cout ch ; cout endl; return 0; } 习题7:假定邮寄包裹的计费标准如下(重量在档次之间时往上一挡靠): 重量(克) 收费(元) 15 5 30 9 45 12 60 14(每满1000公里加收1元) 75及以上 15(每满1000公里加收2元) 编写一个程序,输入包裹重量和邮寄距离,计算并输出收费数额。 int main() { int charge; double weight; cout Please input the weight of the package : endl; cin weight; …… cout charge endl; return 0; } if (weight = 0) cout The weight is wrong! endl; else if (weight = 15) charge = 5; else if (weight = 30) charge = 9; else if (weight = 45) charge = 12;
文档评论(0)