Files
42-Piscine_Python/00/ex5/ft_count_harvest_recursive.py
2026-01-31 10:53:59 +01:00

10 lines
281 B
Python

def ft_count_harvest_recursive(x: int = -1):
if x < 0:
print("Days until harvest:", end=" ")
x = int(input())
ft_count_harvest_recursive(x)
print("Harvest time!")
elif x > 0:
ft_count_harvest_recursive(x - 1)
print("Day", x)