解题思路:
注意事项:
参考代码:
a=input()
b=0
while True:
x=sorted(a,reverse=True)
x=list(map(str,x))
x=''.join(x)
x=int(x)
y=sorted(a,reverse=False)
y=list(map(str,y))
y=''.join(y)
y=int(y)
n=x-y
b=b+1
if n==6174:
break
a=[]
for i in str(n):
a.append(i)
print(b)
0.0分
0 人评分