×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Perfect Numbers In Java - ICSE Examples Common Elements In Array In Java - ICSE Examples
Neon Numbers In Java - ICSE Examples - Java
9314    Arnab De    14/05/2018

Neon No In Java - ICSE Examples

A number is said to be neon, if sum of all digits of square of the number is equal to the number.
Input   9, It's square = 81 = 8+1 = 9       ( So 9 is a Neon Number )
Input   25, It's square = 625 = 6+2+5 = 13  ( So 25 is not a Neon Number )

Write a program to find and print neon numbers from different given numbers. this program should terminate / stop it's processing when a negetive number is given as input. Use "for loop" for finding the sum of digits and other process.

softetechnologies
import java.util.*;
class neonnumbers
{
    public static void main ()
    {
        Scanner sc = new Scanner (System.in);
        int no;
        for(; ;)
        {
          System.out.println("Enter the number:");
           no=sc.nextInt();
          if(no<0)
          {
              break;
            }
          int s=no*no,sum=0;
          for(;s>0;)
           {
            sum=sum+(s%10);
            s=s/10;
           }
          if(sum==no)
          {
              System.out.println("neon number");
          }
          else
          {
              System.out.println("not a neon number");
          }
        }
    }
}
softetechnologies

Output
==========

Enter the number:
23
not a neon number
Enter the number:
34
not a neon number
Enter the number:
9
neon number
Enter the number:
-1

Perfect Numbers In Java - ICSE Examples Common Elements In Array In Java - ICSE Examples
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Rabindranath Tagore
Depth of friendship does not depend on length of acquaintance.
Rabindranath Tagore
1335
59.47
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     44336
01/01/2018     36726
25/06/2018     36300
28/06/2017     34765
02/08/2017     33320
01/08/2017     27720
06/07/2017     27482
15/05/2017     27080
14/07/2017     22796
11/09/2018     21441
softetechnologies