Python program to check if the given number is Happy NumberA 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 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:
PROGRAM:In this program, integer value is predefined, user don?t need to put integer value to check Happy number. Output: 82 is a happy number Next TopicPython Programs |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India