Question: Write one single complete C++ program to do all two sections below: Part A: Recursion (from professor Yang) Write a recursive function called countFive. It
Write one single complete C++ program to do all two sections below: Part A: Recursion (from professor Yang) Write a recursive function called countFive. It counts how many 5's appears in a given number passed in as a parameter. SAMPLE RUN::: 515054 counting digit 5: 3 177771 counting digit 5: 0 5 counting digit 5: 1 Write a recursive function called printStarDigit which prints out all the digit in the given number passed in as a parameter. Also, it prints out a * at the beginning and end of this number and in between each digit. Ex: Number: 23455212 *2*3*4*5*5*2*1*2* Number: 7 *7* Number: 18 *1*8*
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
