5,8,10,3,用加减乘除等于24人怎么做?
展开全部
以下是一种可能的解法:
将给定的数字排列为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。
将给定的数字排列为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。
展开全部
不可能等于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)
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)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询