Programming language - Python 3.11
IDE - PyCharm 2022
Ответ:
15
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Programming language - Python 3.11
IDE - PyCharm 2022
Ответ:
15
f(7) = f(6) + 1 = 10
f(6) = f(5) + f(3) = 9
f(5) = f(4) + 1 = 6
f(4) = f(3) + f(2) = 5
f(3) = f(2) + 1 = 3
f(2) = f(1) + f(1) = 2
f(1) = 1