Question: Write pseudocode for a recursive function named counter. Counter will take in a positive integer and produce a list of numbers counting down to 0.
Write pseudocode for a recursive function named "counter". Counter will take in a positive integer and produce a list of numbers counting down to 0. There must be recursion used in your solution. For example, counter(5) produces: 5, 4, 3, 2, 1, 0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
