Python program to check if the given number is Happy Number

Created with Sketch.

Python program to check if the given number is Happy Number

A number is said to be happy if it yields 1 when replaced by the sum of squares of its digits repeatedly. If this process results in an endless cycle of numbers containing 4, then the number will be an unhappy number.

Let’s understand by an example:

Number = 32
32+ 22 = 13
12 + 32 = 10
12 + 02 = 1

In this example, we split 32 to get the sum of squares of its digits which forms another number (13), we replace 32 by 13 to continue this cycle until result 1. We found 32 a happy number.

If the above cycle for any number results in 1 then that number will be a Happy number otherwise that will be an unhappy number resulting 4, 16, 37, 58, 89, 145, 42, 20,…..

Some Happy numbers are 7, 28, 100, 320, etc.

In this program, we need to determine whether the given number is a Happy number or not by following the algorithm below:

ALGORITHM:

  • STEP 1: isHappyNumber() determines whether a given number is happy or not.
    1. If the number is greater than 0, then calculate remainder rem by dividing the number with 10.
    2. Calculate square of rem and add it to a variable sum.
    3. Divide number by 10.
    4. Repeat the steps from a to c till the sum of the square of all digits present in number has been calculated.
    5. Finally, return the sum.
  • STEP 2: Define and initialize variable num.
  • STEP 3: Define a variable result and initialize it with a value of num.
  • STEP 4: If the result is neither equal to 1 nor 4 then, make a call to isHappyNumber().
  • STEP 5: Otherwise, if the result is equal to 1 then, given number is a happy number.
  • STEP 6: If the result is equal to 4 then, given number is not a happy number.

PROGRAM:

In this program, integer value is predefined, user don?t need to put integer value to check Happy number.

  1. #isHappyNumber() will determine whether a number is happy or not  
  2. def isHappyNumber(num):
  3.     rem = sum = 0;
  4.     #Calculates the sum of squares of digits  
  5.     while(num > 0):
  6.         rem = num%10;
  7.         sum = sum + (rem*rem);
  8.         num = num//10;
  9.     return sum;
  10. num = 82;
  11. result = num;
  12. while(result != 1 and result != 4):
  13.     result = isHappyNumber(result);
  14. #Happy number always ends with 1  
  15. if(result == 1):
  16.     print(str(num) + ” is a happy number”);
  17. #Unhappy number ends in a cycle of repeating numbers which contain 4  
  18. elif(result == 4):
  19.     print(str(num) + ” is not a happy number”);

Output:

82 is a happy number

Leave a Reply

Your email address will not be published. Required fields are marked *