×
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
9754    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.
Albert Einstein
If you can't explain it simply, you don't understand it well enough.
Albert Einstein
1388
69.48
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     50608
25/06/2018     42596
01/01/2018     41778
28/06/2017     39560
02/08/2017     38349
01/08/2017     32573
06/07/2017     32270
15/05/2017     31726
14/07/2017     27859
11/09/2018     27598
softetechnologies