Moran Numbers in JavaIn this tutorial, we will be discussing Moran numbers in Java. A moran number is a number, when divided by the sum of its digits, generates a prime number. Note that the sum of the digits of the number should be the factor of that number. Let's understand with the help of a few examples. Example 1:Input: 45 Output: 45 is a Moran number. Explanation: The sum of the digits of the number 45 is 4 + 5 = 9, and when 45 is divided by 9, we get 45 / 9 = 5, and 5 is a prime number. Hence, 45 is a Moran number. Example 2:Input: 36 Output: 36 is not a Moran number. Explanation: The sum of the digits of the number 36 is 3 + 6 = 9, and when 36 is divided by 9, we get 36 / 9 = 4, and 4 is not a prime number. Hence, 36 is not a Moran number. Example 3:Input: 22 Output: 22 is not a Moran number. Explanation: The sum of the digits of the number 22 is 2 + 2 = 4, and 4 is not the factor of the number 22. Hence, 22 is not a Moran number. Validation For the Moran NumberObserve the following algorithm. Step 1: Take a number n. Step 2: Compute the sum of the digits of the number n. Step 3: Check whether the sum of the digits is the factor of the number n or not.
ImplementationObserve the implementation of the above algorithm. FileName: MoranNum.java Output: The number 45 is a Moran number. The number 36 is not a Moran number. The number 22 is not a Moran number. Finding Moran Numbers Within A RangeIn this approach, we will be using a sieve to find the moran numbers within the given range. We are using the sieve because we do not want to use a loop for doing the validation for a prime number. The rest of the other stuff remains the same as the above-written approach. Observe the program. FileName: MoranNum1.java Output: The Moran numbers that lie within the range 1 to 200 are: 18 21 27 42 45 63 84 111 114 117 133 152 153 156 171 190 195 198 |
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