Ankit Gupta

Ankit Gupta

  • NA
  • 14
  • 10.3k

A happy number is defined by the following process. Starting with any positive integer, replace the ...

Oct 2 2012 6:11 AM
A happy number is defined by the following process. Starting with any positive integer, replace the number by the sum of the squares of its digits, and repeat the process until the number equals 1 (where it will stay), or it loops endlessly in a cycle which does not include 1. Those numbers for which this process ends in 1 are happy numbers,

while those that do not end in 1 are unhappy numbers.  The first argument is the pathname to a file which contains test data, one test case per line. Each line contains a positive integer. Each line is in the format: N i.e. a positive integer eg.

1
7
22  

If the number is a happy number, print out a 1. If not, print out a 0 eg.

1
1
0

For the curious, here's why 7 is a happy number: 7->49->97->130->10->1. Here's why 22 is NOT a happy number: 22->8->64->52->29->85->89->145->42->20->4->16->37->58->89
...
can any one help me in this question



Answers (5)