鱼C论坛

 找回密码
 立即注册
查看: 2213|回复: 5

[已解决]这种改进如何改进呢~

[复制链接]
发表于 2019-6-2 19:28:00 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
print("欢迎进行python文字的第三次文字游戏改进测试")
temp = input("please fall a number in the bank")
guess = int(temp)
while guess != 8:
    chance = 3
    chance = chance -1
    if guess >8:
        print("bigger than answer")
    else :
        print("smaller than answer")

    temp = input("please try again ")
    guess =int(temp)
print("you are right")
input("The game is over!")
while chance == 0:
    print("sorry, you have 3 times to answer this question")
input("the game is over")
最佳答案
2019-6-2 19:55:21
print("欢迎进行python文字的第三次文字游戏改进测试")
temp = input("please fall a number in the bank")
guess = int(temp)
chance = 2
while chance != 0:
    
    
    if guess >8:
        print("bigger than answer")
    elif guess <8:
        print("smaller than answer")
    else:
        break
    temp = input("please try again ")
    guess =int(temp)
    chance = chance -1
if guess != 8:
    print("sorry, you have 3 times to answer this question")
else:
    print("you are right")
print("The game is over!")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2019-6-2 19:28:36 | 显示全部楼层
英语有点烂,不要介意。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2019-6-2 19:29:29 | 显示全部楼层
我想让chance = 0的时候,就结束这个游戏,
但是 好像while 一直重复的时候,会反复运行chance = 3
这就会导致一直退不出去。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2019-6-2 19:55:21 | 显示全部楼层    本楼为最佳答案   
print("欢迎进行python文字的第三次文字游戏改进测试")
temp = input("please fall a number in the bank")
guess = int(temp)
chance = 2
while chance != 0:
    
    
    if guess >8:
        print("bigger than answer")
    elif guess <8:
        print("smaller than answer")
    else:
        break
    temp = input("please try again ")
    guess =int(temp)
    chance = chance -1
if guess != 8:
    print("sorry, you have 3 times to answer this question")
else:
    print("you are right")
print("The game is over!")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

 楼主| 发表于 2019-6-3 08:32:59 | 显示全部楼层

谢谢大佬,原来要先做一个while的机会语句。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2019-6-5 21:28:44 | 显示全部楼层
import random
#获取1-30的随机数quession
quession = random.randint(1,30)
#定义while循环标记
active = True
while active:
    #定义次数计数器
    for i in range(6,0, -1):
        #获取用户输入
        answer = int(input("请输入1-30的整数回答问题:"))
        print('目前还有%d次猜测机会!' % i)
        if answer > quession:
            print("猜大了,请努力")
        elif answer < quession:
            print("猜小了,请努力")
        elif answer == quession:
            print("真棒,回答正确!正确答案为%d ." % quession)
            #如果用户回答正确,重置while标记退出循环
            active = False
            break
    #猜测次数用完后,判断用户是否想继续游戏        
    else:
        count = input("目前已经没有回答机会,请问是否放弃游戏[y/n]:")
        if count == "n":
            continue
        else:
            break
            
这是我的猜数代码,有兴趣可以参考下
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-13 06:33

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表