Case - I: Playing with Digits Write a program which reads input integers from input file which consists a series of numbers where each integer contains only of the digits from 0 to 9. SO 1. Count total digits in the number SO 2. Count & Print the even digits SO 3. Count & Print Odd Digits SO 4. Showing how many times cach digit appears in the integer. Specifically if a is an integer is countTotalDigits (a);// Returns total digits in integer // Function to count & print even digits countEvens (a) ; // Function to count & print odd digits // Function to count & print digits with stars countodds (a) ; countDigits (a):

icon
Related questions
Question
Case - I: Playing with Digits
Write a program which reads input integers from input file which consists a series of numbers where each integer
contains only of the digits from 0 to 9.
SO 1. Count total digits in the number
SO 2. Count & Print the even digits
SO 3. Count & Print Odd Digits
SO 4. Showing how many times each digit appears in the integer.
Specifically if a is an integer is
countTotalDigits (a):// Returns total digits in integer
// Function to count & print even digitS
countEvens (a) ;
countodds (a) ;
// Function to count & print odd digits
countDigits (a) ;
// Function to count & print digits with stars
Transcribed Image Text:Case - I: Playing with Digits Write a program which reads input integers from input file which consists a series of numbers where each integer contains only of the digits from 0 to 9. SO 1. Count total digits in the number SO 2. Count & Print the even digits SO 3. Count & Print Odd Digits SO 4. Showing how many times each digit appears in the integer. Specifically if a is an integer is countTotalDigits (a):// Returns total digits in integer // Function to count & print even digitS countEvens (a) ; countodds (a) ; // Function to count & print odd digits countDigits (a) ; // Function to count & print digits with stars
Expert Solution
steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
File Input and Output Operations
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.