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 Lychrel numbers and the number of Lychrel number within the range 1 to 1000

C++ Numbers: Exercise-12 with Solution

Write a program in C++ to find the Lychrel numbers and the number of Lychrel number within the range 1 to 1000 (after 500 iteration).

Pictorial Presentation:

C++ Exercises: Find the Lychrel numbers and the number of Lychrel number within the range 1 to 1000

Sample Solution:

C++ Code :

#include <iostream>
using namespace std;


long long int numReverse(long long int number)
{
    long long int rem = 0;
    while (number > 0)
    {
    rem = (rem * 10) + (number % 10);
        number = number / 10;
    }
    return rem;
}
bool is_Palindrome(long long int num)
{
    return (num == numReverse(num));
}
bool isLychrel(int num, const int iterCount = 500)
{
    long long int temp = num;
    long long int rev;
    for (int i = 0; i < iterCount; i++)
    {
        rev = numReverse(temp);
        if (is_Palindrome(rev + temp))
            return false;
        temp = temp + rev;
    }
    return true;
}
int main()
{
int lyno,ctr=0,i;
bool l;
 cout << "\n\n Find the Lychrel numbers between 1 to 1000(after 500 iteration): \n";
 cout << " ----------------------------------------------------------------------\n";
 cout << " The Lychrel numbers are : ";
for (i=1;i<=1000;i++)
{
lyno=i;
    l = isLychrel(lyno);
    if(l==1)
    {
	ctr++;
        cout<<lyno<<" ";
    }}
    cout<<endl;
    cout <<" The number of Lychrel numbers are: "<<ctr<<endl;
    return 0;

}

Sample Output:

Find the Lychrel numbers between 1 to 1000(after 500 iteration):                                    
 ----------------------------------------------------------------------                              
 The Lychrel numbers are : 196 295 394 493 592 689 691 788 790 879 887 978 986                       
 The number of Lychrel numbers are: 13 

Flowchart:

Flowchart: Check whether a number is Lychrel number or not
Flowchart: Check whether a number is Lychrel number or not
Flowchart: Check whether a number is Lychrel number or not
Flowchart: Check whether a number is Lychrel number or not

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to check whether a number is Lychrel number or not.
Next: Write a program in C++ to generate and show the first 15 Narcissistic decimal numbers.

What is the difficulty level of this exercise?