Sunday, September 12, 2021

Neon Number in java

     Java Program to Check If a Number is Neon number or not..?



Neon Number




Program-




          // Java Program to Check If a Number is Neon number or not
 
            class Neon
{
      public static void main(String[] args)
{
       System.out.println("Enter the Value");
      int x1=new java.util.Scanner(System.in).nextInt();
        int sq, num, sum=0, rem;
               num = x1;

     sq =num*num;  
                   while(sq>0) 
              {
                         rem=sq%10;
                          sum+=rem; 
                       sq=sq/10;
              }
                   if (sum == num) 
                  System.out.println("is a Neon Number");
        }
              else  
        {
                 System.out.println("is not a  Neon Number");
        }
}
}





For Proper Understanding Watch the Video :-
            
           




Thanks;) 
All the Best :)
Keep Learning:)

          Study:)

                  Youtube                      Instagram                             Facebook   

            
          Self:)

                                Instagram                           Facebook












No comments:

Post a Comment

Pattern- 9 Star Pattern

  Pattern- 9 Star Pattern  Logic-                                  for(int i=1; i<=5; i++)                          {              ...