gpt4 book ai didi

c - 使用 if 语句猜测数字

转载 作者:行者123 更新时间:2023-11-30 19:22:14 24 4
gpt4 key购买 nike

好吧,我正在尝试猜测最接近中奖号码的一系列数字(忽略平局的可能性),假设中奖号码是 15。

我还想确保它不超过中奖号码。最后一个条件是,如果所有猜测都太大,则不会有赢家。

假设数量如下:

12
9
7
13
4
0

我希望程序选择 13 作为中奖号码。

这是我编写的代码的片段:

corrrectGuess = 15
while(contestantGuess != 0) {
if(contestantGuess <= correctGuess) {
winningGuess = contestantGuess;
}
}

但这将使所有数字成为获胜的猜测。

有人可以帮我构造一个正确的 if 语句吗?或者只编写伪代码也会有帮助。

最佳答案

只需循环选项并跟踪“最小”距离。

minDistance = 50000000;  // arbitrarily high
for num in numbers {
if num > correctGuess
continue; // skip numbers higher than correctGuess
newDistance = correctGuess - num
if newDistance < minDistance
minDistance = newDistance
winngingGuess = num

关于c - 使用 if 语句猜测数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17407265/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com