作业:
绘制结构化流程图并编写伪代码,描述猜测1到100之间的数字的过程。在每次猜测之后,玩家被告知猜测太高或太低。该过程将继续,直到玩家猜到正确的号码。
我的伪代码:
Start
Num1=6
Get Num2
while Num2 is not = to Num1
if Num2 > Num1
print "too high"
else
print "too low"
endif
Get Num2
endwhile
Stop
答案 0 :(得分:0)
是的,假设您正在为猜谜游戏而不是猜测者编写伪代码。不过,你的缩进级别有点时髦。不要忘记绘制流程图。
答案 1 :(得分:0)
看起来不错。您可能希望添加一个确认,表明他们在结束后输入了正确的数字