gpt4 book ai didi

testing - 以下伪代码中 i 的值是多少?

转载 作者:行者123 更新时间:2023-11-28 20:07:05 25 4
gpt4 key购买 nike

我在编程测试中遇到了这个问题。你认为这个问题甚至是正确的吗?看答案选项。 (2^x 表示 2 提高到 x)

Consider the following pseudocode.
x := 1;
i := 1;
while (x >= 1000)
begin
x := 2^x;
i := i + 1;
end;

What is the value of i at the end of the pseudocode?

a) 4
b) 5
c) 6
d) 7
e) 8

我确信 i 的值将为 1。我将差异告诉了考官,他建议我如果我觉得问题不正确就不要回答问题。我还能做什么?

最佳答案

1

X < 1000,所以不进入while。

或者问题中有错误(并且 X 应该是 <= 1000 而不是 >=1000)

如果 <= 1000 应该是 5:

2 - 4 - 16 - 65K

2 - 3 - 4 - 5

关于testing - 以下伪代码中 i 的值是多少?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2621840/

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