Question
Write the definition of a function named printstarbucks that receives a non-negative integer n and prints a line consisting of n asterisks followed by n dollars signs. so, if the function received 5 it would print: *****$$$ and if received 3 it would print ***$$ the function must not use a loop of any kind (for, while, do-while) to accomplish its job.
Asked by: USER2453
356 Viewed
356 Answers
Responsive Ad After Question
Answer (356)
Don’t understand what you are asking