Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Find the frequency of each digit in a given integer

C++ For Loop: Exercise-59 with Solution

Write a program in C++ to find the frequency of each digit in a given integer.

Pictorial Presentation:

C++ Exercises: Find the frequency of each digit in a given integer

Sample Solution:-

C++ Code :

#include <iostream>
using namespace std;
int main()
{
    int n, i, j, ctr, r;
    cout << "\n\n Find frequency of each digit in a given integer:\n";
    cout << "-----------------------------------------------------\n";
    cout << " Input any number: ";
    cin >> n;
    for (i = 0; i < 10; i++) 
    {
        cout << "The frequency of " << i << " = ";
        ctr = 0;
        for (j = n; j > 0; j = j / 10) 
        {
            r = j % 10;
            if (r == i) 
            {
                ctr++;
            }
        }
        cout << ctr << endl;
    }
}

Sample Output:

 Find frequency of each digit in a given integer:                      
-----------------------------------------------------                  
 Input any number: 122345                                              
The frequency of 0 = 0                                                 
The frequency of 1 = 1                                                 
The frequency of 2 = 2                                                 
The frequency of 3 = 1                                                 
The frequency of 4 = 1                                                 
The frequency of 5 = 1                                                 
The frequency of 6 = 0                                                 
The frequency of 7 = 0                                                 
The frequency of 8 = 0                                                 
The frequency of 9 = 0

Flowchart:

Flowchart: Find the frequency of each digit in a given integer

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to calculate product of digits of any number.
Next: Write a program in C++ to input any number and print it in words.

What is the difficulty level of this exercise?