标签:strong 题目条件 temp str 需要 输出 for 之间 pre
题目没有任何输入。
请输出所有满足题目条件的a、b、c的值。 a、b、c之间用空格隔开。 每个输出占一行。
temp=[[a,b,c]for a in range(10) for b in range (10) for c in range (10)if a*100+b*10+c+b*100+c*10+c==532]#枚举列表得到需要的值
for s in temp:
for j in s:
print(j,end=‘ ‘)#输出
print()
设a、b、c均是0到9之间的数字,abc、bcc是两个三位数,且有:abc+bcc=532。求满足条件的所有a、b、c的值。
标签:strong 题目条件 temp str 需要 输出 for 之间 pre
原文地址:https://www.cnblogs.com/12star52/p/9825605.html