输入描述:
题目没有任何输入。
输出描述:
请输出所有满足题目条件的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()
原文地址:https://www.cnblogs.com/12star52/p/9825605.html
时间: 2024-10-02 05:59:44