Ответ:
start = int(input("Введите начало отрезка: "))
end = int(input("Введите конец отрезка: "))
count = 0
for i in range(start, end+1):
if i >= 10 and i <= 99 and i % 5 == 0:
count += 1
print("Количество двузначных чисел, кратных 5, на отрезке от", start, "до", end, ":", count)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
start = int(input("Введите начало отрезка: "))
end = int(input("Введите конец отрезка: "))
count = 0
for i in range(start, end+1):
if i >= 10 and i <= 99 and i % 5 == 0:
count += 1
print("Количество двузначных чисел, кратных 5, на отрезке от", start, "до", end, ":", count)