码迷,mamicode.com
首页 > 其他好文 > 详细

猜年龄游戏

时间:2016-11-25 20:46:51      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:bre   游戏   div   style   多次   color   bsp   span   break   

age=22
counter=0
for i in range(10):
    if counter<3:
        guess_num=int(input("请猜年龄"))
        if guess_num==age:
            print("恭喜你猜对了")
            break
        elif guess_num >age:
            print("太大了")
        else:
            print("太小了")
    else:
        continue_isntit=input("你猜了太多次了真笨是否继续?输入:q 继续")
        if continue_isntit=="q":
            counter=0
            continue
        else:
            break

    counter += 1

 

猜年龄游戏

标签:bre   游戏   div   style   多次   color   bsp   span   break   

原文地址:http://www.cnblogs.com/zang963469010/p/6102747.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!