Ответ:
6 чисел
Объяснение:
count = 0
for i in range(10, 99):
if (i % 2 == 1) and (i % 3 == 0) and ((i % 10 == 5) or (i % 10 == 7)):
print(i)
count += 1
print(count)
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
6 чисел
Объяснение:
count = 0
for i in range(10, 99):
if (i % 2 == 1) and (i % 3 == 0) and ((i % 10 == 5) or (i % 10 == 7)):
print(i)
count += 1
print(count)