- 1、本文档共73页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
编码实现 double PlayGame() { int actual_price, lower_price = lowest_price, higher_price = highest_price; int chances_left = guesstimate_count; int bout_count = 0, prevailed_bout_count = 0; while(TRUE) { printf( \n ); actual_price = InitializeBout(); if(PlayBout(actual_price, lower_price, higher_price, chances_left)) prevailed_bout_count++; bout_count++; if(!Again()) break; } return (double)prevailed_bout_count / (double)bout_count; } 编码实现 void PrintGameOverInfo(double prevailed_ratio) { printf(\nprevailed ratio: %.2lf%%.\n, prevailed_ratio * 100); if(prevailed_ratio = 0.75) printf(You luckyyyyyyyyyyyyy!\n\n); else if(prevailed_ratio = 0.50) printf(So gooooooood.\n\n); else printf(You can do it better. Wish you luck.\n\n); } static int InitializeBout() { return GenerateRandomNumber(lowest_price, highest_price); } 编码实现 static BOOL PlayBout(int actual_price, int lower_price, int higher_price, int chances_left) { int guesstimate_price; int judge_result; while(chances_left 0){ guesstimate_price = GetGuesstimatePrice(lower_price, higher_price, chances_left); guesstimate_price = CheckValidationOfGuesstimatePrice(lower_price, higher_price, guesstimate_price); chances_left--; judge_result = JudgeGuesstimatePrice(actual_price, guesstimate_price); switch(judge_result){ case 1: if(chances_left 0){ printf(\nHigher.\n); higher_price = guesstimate_price - 1; } else{ printf(\nYou lose this bout. The actual price is %d.\n, actual_price); return FALSE; } break; case -1: if(chances_left 0){ printf(\nLower.\n); lower_price = guesstimate_price + 1; } else{ printf(\nYou lose this bout. The actual price is %d.\n, actual_price); return FALSE; } break; default: printf(\nYou winnnnnnnnnnnnnnnn!\n); return TRUE; } } return FALSE; } 编码实现 static BOOL Again() { printf(\nPlay a new game (\n\ to stop, other words to play again)? );
您可能关注的文档
最近下载
- 资本主义的发展历程(萌芽、制度确立、扩展)课件+++2024年湖南省中考二轮专题复习.pptx VIP
- 施耐德电气 SD328B 步进电机驱动器 产品手册.pdf
- J B-T 8975-2006 低压信号灯-机械行业标准规范.pdf VIP
- 医保支付方式改革—DRG与DIP.pptx
- 《10kV电杆结构部分计算书》.doc
- 《艺术学概论》随堂测验1-9答案.docx VIP
- 银行业防火演练方案.docx VIP
- 中医病历模板(腰突5).doc VIP
- Long-Term-Development-in-Sport-and-Physical-Activity-3.0体育运动中的长期发展.pdf
- 2023年陕西投资集团有限公司校园招聘考试笔试题库及答案解析.docx
文档评论(0)