Write, Compile and Execute a Java method that computes whether a given number is happy or sad.

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter4: Selection Structures
Section: Chapter Questions
Problem 14PP
icon
Related questions
Question
In number theory, a happy number is a number which eventually reaches 1 when replaced by the sum of the
square of each digit. For instance, 13 is a happy number because
12 + 3? = 10 and 1² + o² = 1.
On the other hand, 4 is not a happy number because the sequence starting with
4 = 16 and 12 + 62² = 37
and eventually reaches to 4 that is the number that started the sequence, and so the process continues in an
infinite cycle without ever reaching 1.
Write, Compile and Execute a Java method that computes whether a given number is happy or sad.
Transcribed Image Text:In number theory, a happy number is a number which eventually reaches 1 when replaced by the sum of the square of each digit. For instance, 13 is a happy number because 12 + 3? = 10 and 1² + o² = 1. On the other hand, 4 is not a happy number because the sequence starting with 4 = 16 and 12 + 62² = 37 and eventually reaches to 4 that is the number that started the sequence, and so the process continues in an infinite cycle without ever reaching 1. Write, Compile and Execute a Java method that computes whether a given number is happy or sad.
Expert Solution
steps

Step by step

Solved in 2 steps with 2 images

Blurred answer
Knowledge Booster
Top down approach design
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr