首先感谢版主的无私奉献,让我这个菜鸟有机会接触编程这么高大上的事情
我已经学到了 while语句这一节,但是不知道我写的这段无论如何都运行不起来,能帮忙看看指正一下吗?
num=10
print"Guess what i think"
result = false
while result == false:
print"lease input"
answer=input()
if answer>num:
print"Too Big"
if answer<num:
print"Too samll"
if answer==num:
print"BINGO!"
result=true