14# Moving House | Scratch Coding Practices & challenging Tasks

Опубликовано: 07 Сентябрь 2022
на канале: Block Programming
896
6

I'd like to calculate how long on average I've lived in a single house.

Given a person's age and the number of times they've moved house as moves, return the average number of years that they've spent living in the same house.

Examples
yearsInOneHouse(30, 1) ➞ 15
yearsInOneHouse(15, 2) ➞ 5
yearsInOneHouse(80, 0) ➞ 80
Notes
You can assume that the tests include people who've always lived in a house.
Round to the nearest year.