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: Check whether a number is a Strong Number or not

C++ Numbers: Exercise-45 with Solution

Write a program in C++ to check whether a number is a Strong Number or not.

Sample Solution:

C++ Code:

#include <iostream>
using namespace std;

int main()
{
    int i, n, n1, s1 = 0, j;
    long fact;
    cout << "\n\n Check whether a number is Strong Number or not:\n";
    cout << "----------------------------------------------------\n";
    cout << " Input a number to check whether it is Strong number: ";
    cin >> n;
    n1 = n;
    for (j = n; j > 0; j = j / 10) {
        fact = 1;
        for (i = 1; i <= j % 10; i++) {
            fact = fact * i;
        }
        s1 = s1 + fact;
    }
    if (s1 == n1) {
        cout << n1 << " is Strong number." << endl;
    }
    else {
        cout << n1 << " is not a Strong number." << endl;
    }
}

Sample Output:

Check whether a number is Strong Number or not:                                                
 -------------------------------------------------------                                             
 Input a number to check whether it is Strong number: 24 
24 is not a Strong number

Flowchart:

Flowchart: Check whether a number is a Strong Number or not

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to find the Armstrong number for a given range of number.
Next: Write a program in C++ to find Strong Numbers within a range of numbers.

What is the difficulty level of this exercise?