Простейшее решение "в лоб":
def check(x):
s = 1
while x > 0:
s *= x % 10
x //= 10
return s == 37800
i = 1
while check(i) == False:
i += 1
print(i)
print(check(i))
Даст нам ответ: 355789
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Простейшее решение "в лоб":
def check(x):
s = 1
while x > 0:
s *= x % 10
x //= 10
return s == 37800
i = 1
while check(i) == False:
i += 1
print(i)
print(check(i))
Даст нам ответ: 355789