Question: Write a function called printStars. The function receives a parameter containing an integer value. If the parameter is positive, the funciton prints (to standard output)
Write a function called printStars. The function receives a parameter containing an integer value. If the parameter is positive, the funciton prints (to standard output) the given number of asterisks. Otherwise the function does nothing. The function does not return a value. Thus, if printStars(8) is called, ******** (8 asterisks) will be printed. The function must not use a loop of any kind (for, while, do-while) to accomplish its job. Instead, it should examine its parameter, returning if the parameters value is not positive. If the parameter is positive, it: prints a single asterisk (and no other characters) then crecursively calls itself to print the remaining asterisks
Step by Step Solution
There are 3 Steps involved in it
To implement the printStars function as described in the problem well use recursion instead of ... View full answer
Get step-by-step solutions from verified subject matter experts
