猜数字游戏 猜0~1000中的一个数字(由电脑随机产生),只能猜10次。每猜一次,程序给出too low 或too high 或
spot on 题目 a哪些量需要#define (我认为是low 0和high 1000) b写一个InRange的函数,此函数判断输入的数字是否在0~1000之间,(这两个数也是变量) 使用bool InRange (int number,int low,int high) c写一个TakeAGuess的函数,要求使用者猜数直到猜中,如果猜对返回 TRUE,如果猜错,就提示too low
/too high并且返回 FALSE。你需要在结果中使用InRange
d写一个PlayGame的函数,which calls TakeAGuess until the user either runs out of guesses or
gets the answer correct,(这句翻不来)。给使用者有限定的次数(10次)。如果使用者赢了就,返
回TRUE,否则返回FALSE
e写main函数。which calls PlayGame repeatedly,providing that function with a random secret
number in the allowable range. 各位高手,我把题目翻成中文了。由于水平有限,有些句子不会表达。希望大家对照英文来帮助我。特别
是b,c,d题,我毫无头绪。谢谢了