Ответ:
:)
Объяснение:
start = int(input("Введите начало диапазона: "))
end = int(input("Введите конец диапазона: "))
while start <= end:
if start % 7 == 0:
print(start)
start += 1
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
:)
Объяснение:
start = int(input("Введите начало диапазона: "))
end = int(input("Введите конец диапазона: "))
while start <= end:
if start % 7 == 0:
print(start)
start += 1