5,8,10,3,用加减乘除等于24人怎么做?

 我来答
llss839
2023-03-09 · 超过147用户采纳过TA的回答
知道小有建树答主
回答量:434
采纳率:0%
帮助的人:10.4万
展开全部
以下是一种可能的解法:

将给定的数字排列为5、8、10和3。
从中选择三个数字进行组合,共有4种组合方式,分别是(5,8,10)、(5,8,3)、(5,10,3)和(8,10,3)。
对于每种组合方式,进行加减乘除计算,查看能否得到结果为24的算式。
(5,8,10)可以通过 5 * 8 - 10 = 30 - 10 = 20 或者 5 * 10 - 8 = 50 - 8 = 42得到结果为24的算式。
(5,8,3)无法得到结果为24的算式。
(5,10,3)可以通过 5 * (10 - 3) = 5 * 7 = 35 或者 (5 + 3) * 10 - 8 = 80 得到结果为24的算式。
(8,10,3)无法得到结果为24的算式。
因此,能够得到结果为24的算式有两个,分别是 5 * 8 - 10 = 20 和 5 * (10 - 3) = 35。
因此,以上是一种可能的解法,得到的结果为两个24。但是需要注意,这只是其中的一种解法,还可能有其他的组合和算式可以得到结果为24。
hb丰收
2021-03-30 · TA获得超过592个赞
知道小有建树答主
回答量:2971
采纳率:42%
帮助的人:206万
展开全部
不可能等于24。
from itertools import permutations
from random import randint
#随机生成四张牌
my_list =[randint(1,14) for j in range(4)]
# 对4个整数随机排列的列表
my_list = [5,8,10,3]
result = [c for c in permutations(my_list, 4)]
symbols = ["+", "-", "*", "/"]
list2 = [] # 算出24的排列组合的列表
flag = False
for one, two, three, four in result:
for s1 in symbols:
for s2 in symbols:
for s3 in symbols:
if s1 + s2 + s3 == "+++" or s1 + s2 + s3 == "***":
express = ["{0}{1}{2}{3}{4}{5}{6}".format(one, s1, two, s2, three, s3, four)] # 全加或者乘时,括号已经没有意义。
else:
express = ["(({0}{1}{2}){3}{4}){5}{6}".format(one, s1, two, s2, three, s3, four),
"({0}{1}{2}){3}({4}{5}{6})".format(one, s1, two, s2, three, s3, four),
"(({0}{1}({2}{3}{4})){5}{6})".format(one, s1, two, s2, three, s3, four),
"{0}{1}(({2}{3}{4}){5}{6})".format(one, s1, two, s2, three, s3, four),
"{0}{1}({2}{3}({4}{5}{6}))".format(one, s1, two, s2, three, s3, four)]
for e in express:
try:
if eval(e) == 24:
list2.append(e)
flag = True
except ZeroDivisionError:
pass
list3 = set(list2) # 去除重复项
for c in list3:
print("YES:", c)
if not flag:
print("NO!",my_list)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式