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 Lychrel number or not

C Numbers: Exercise-8 with Solution

Write a program in C to check whether a number is Lychrel number or not.

Test Data
Input a number: 196

Sample Solution:

C Code:

# include <stdio.h>
# include <stdbool.h>
# include <stdlib.h>

bool palindrome ( unsigned long long int i );
unsigned long long int reverse ( unsigned long long int i );
bool lychrel ( unsigned long long int i );

int main ( void )
{
	unsigned long long int i=0;
	int count=0,num1;
  printf("\n\n Check whether a given number is a Lychrel number or not: \n");
  printf(" -------------------------------------------------------------\n");
  printf(" Input a number: ");
  scanf("%d",&num1);
		if(lychrel(num1))
		{
	printf(" The given number is Lychrel.\n\n");
		}
		else
		{
			printf(" The given number is not Lychrel.\n\n");
		}
	return 0;
}
bool lychrel ( unsigned long long int i )
{
	int j; /*iteration counter*/
	bool lychrel = true;
	i = i + reverse ( i );

	for ( j = 1; j <= 30 ; j++ )
	{
		if ( palindrome ( i ) )
		{
			lychrel = false;
			break;
		}
		i = i + reverse ( i );
	}

	return lychrel;
}
unsigned long long int reverse ( unsigned long long int i )
{
	unsigned long long int ret = 0;
	while ( i != 0 )
	{
		ret *= 10;
		ret += i % 10;
		i /= 10;
	}
	return ret;
}

bool palindrome ( unsigned long long int i )
{
	return ( i == reverse ( i ) );
}

Sample Output:

 Input a number: 196                                                                                          
 The given number is Lychrel.

Pictorial Presentation:

C programming: Check whether a number is Lychrel number or not.

Flowchart:

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

C Programming Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C to generate and show all Kaprekar numbers less than 1000.
Next: Write a program in C to display and count the number of Lychrel numbers within a specific range(from 1 to a specific upper limit).

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



C Programming: Tips of the Day

Static variable inside of a function in C

The scope of variable is where the variable name can be seen. Here, x is visible only inside function foo().

The lifetime of a variable is the period over which it exists. If x were defined without the keyword static, the lifetime would be from the entry into foo() to the return from foo(); so it would be re-initialized to 5 on every call.

The keyword static acts to extend the lifetime of a variable to the lifetime of the programme; e.g. initialization occurs once and once only and then the variable retains its value - whatever it has come to be - over all future calls to foo().

Ref : https://bit.ly/3fOq7XP