You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Exercise 1.11(test)Функция f определяется правилом: f (n) = n, если n < 3, и f (n) = f (n − 1) + f (n − 2) + f (n − 3), если n ≥ 3. Напишите процедуру, вычисляющую f с помощью рекурсивного и итеративного процессов
Exercise 1.12(test)Напишите процедуру, вычисляющую элементы треугольника Паскаля с помощью рекурсивного процесса