鱼C论坛

 找回密码
 立即注册
查看: 2353|回复: 3

[已解决]004小甲鱼改进的的第一个游戏

[复制链接]
发表于 2020-11-9 22:36:21 | 显示全部楼层 |阅读模式

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

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

x
请问大佬,如何将第一次数字猜测的答案也有提示大或是小,用什么方法啊,谢谢!!!!
import random
times = 3
secret = random.randint(1,15)
str_1 = "1 2 3"
str_2 = "a v b"
str_3 = "1 2 3 a v b"
print(str_1.isdigit())
print("-----giao-----")
temp = input("猜一下我心里想的数字是几")
guess = int(temp)
while guess != secret and times > 0:
    temp = input("错!!!!!!!!!!再来")
    while not temp. isdigit():
        temp = input("数字。。。。。")
    guess = int(temp)
    times = times-1
    if guess == secret:
        print("我擦6")
        print("滚吧a你")
    else:
        if guess > secret:
            print("大了")
        else:
            print("小了")
print("拜拜")
最佳答案
2020-11-9 22:49:25

改下位置即可,多加了  if 是当 times == 0 的时候不在对用户进行输入

你前面代码有部分没什么意义,可以省略
import random
times = 3
secret = random.randint(1,15)

print("-----giao-----")
temp = input("猜一下我心里想的数字是几")
while not temp.isdigit():
    temp = input("数字。。。。。")
guess = int(temp)
while guess != secret and times > 0:
    while not temp.isdigit():
        temp = input("数字。。。。。")
    guess = int(temp)
    times = times-1
    if guess == secret:
        print("我擦6")
        print("滚吧a你")
    else:
        if guess > secret:
            print("错啦,大了")
        else:
            print("错啦,小了")
        if times != 0:
            temp = input("猜一下我心里想的数字是几")

print("拜拜")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-11-9 22:49:25 | 显示全部楼层    本楼为最佳答案   

改下位置即可,多加了  if 是当 times == 0 的时候不在对用户进行输入

你前面代码有部分没什么意义,可以省略
import random
times = 3
secret = random.randint(1,15)

print("-----giao-----")
temp = input("猜一下我心里想的数字是几")
while not temp.isdigit():
    temp = input("数字。。。。。")
guess = int(temp)
while guess != secret and times > 0:
    while not temp.isdigit():
        temp = input("数字。。。。。")
    guess = int(temp)
    times = times-1
    if guess == secret:
        print("我擦6")
        print("滚吧a你")
    else:
        if guess > secret:
            print("错啦,大了")
        else:
            print("错啦,小了")
        if times != 0:
            temp = input("猜一下我心里想的数字是几")

print("拜拜")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-11-9 22:56:25 | 显示全部楼层
import random
times = 3
secret = random . randint(1 , 15)
print("-----giao-----")
for x in range(times , 0 , -1):
    while True:
        temp = input("猜一下我心里想的数字是几 : ") . strip()
        if temp . isdigit() :
            break
        else:
            print("数字。。。。。\n")
    guess = int(temp)
    if guess == secret:
        print("我擦6")
        print("滚吧a你\n")
        break
    else:
        if guess > secret:
            print("大了\n")
        else:
            print("小了\n") 
else:
    print("太遗憾了!\n")
print("拜拜")   
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-11-10 11:56:22 | 显示全部楼层
本帖最后由 谢小猪的husband 于 2020-11-10 12:35 编辑

新手玩法。。。望大神指点

import random
real= random.randint(1,10)
times=2
print('------猜猜我心里的数字-------')
temp= input('请输入1-10之间的整数:')
guess=int(temp)
if guess==real:
        print('很棒,你跟我心灵相通')
        print('游戏结束!')
elif guess<real:
        print('憨憨猜错啦,往大了猜!')
else :
        print('憨憨猜错啦,往小了猜!')
while guess!= real and times>0:
    temp= input('还有'+str(int(times))+'次机会,请重新输入:')
    guess=int(temp)
    if guess==real:
        print('很棒,你跟我心灵相通')
        print('游戏结束!')
    elif guess<real:
        print('憨憨猜错啦,往大了猜!')
    else :
        print('憨憨猜错啦,往小了猜!')
        times=times-1
if times==0:
    print('错太多啦,游戏结束')
print('GG')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-17 17:52

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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