Ответ: 25
Объяснение:
#Python
for i in range(100):
if (int(str(i)[0])%2==0) and (not i%4==0) and (i%5==0):
print(i)
break
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ: 25
Объяснение:
#Python
for i in range(100):
if (int(str(i)[0])%2==0) and (not i%4==0) and (i%5==0):
print(i)
break