计算机程序设计基础第五章程序组织与软件开发方式.ppt

计算机程序设计基础第五章程序组织与软件开发方式.ppt

  1. 1、本文档共73页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 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)? );

文档评论(0)

duoduoyun + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档