-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Java Program to Check Neon Number #84
Comments
Hi, I'd like to submit a solution to this question. Could I please be assigned to it? |
I have submitted a pull request for this question. |
Removes not needed imports and adds class to a package.
Hi. Is this issue still open? If so, I'd like to work on it please. |
@sujana-kamasany Hi. Is this issue still open? If it is please assign it to me ,I'll fix this. |
@mayankch283 Yes! You can submit your Solution |
Yes! You can submit your solution |
Hi, is it still open? I would like to contribute. |
hello, I want to submit solution for this question. May I? |
Add JAVA Program to Check if the given number is NEON NUMBER OR NOT
If the sum of digits of the square of the number is equal to the same number then the number is called Neon number.
Example:- 9
Square of 9 = 92= 81
Sum of the digits of the square = 8+1= 9
So, 9 is a Neon Number.
Another Example:- 1
Square of 1= 12= 1
Sum of the digits of the square = 1
S0, 1 is a Neon Number
Another Example:- 6
Square of 6 = 62 = 36
Sum of the digits of the square = 3+6 = 9
Here, 6 is not equal to 9.
So, 6 is not a Neon number.
The text was updated successfully, but these errors were encountered: