Wednesday, September 15, 2021

Harshad Number


 Program to Check If a Number is Harshad number or not.



Harshad Number CodeWithVed



Steps:-



Program:-

                   // Java Program to Check If a Number is Harshad number or not.

 
        class Harshad 

{
        public static void main(String[] args)
{
         System.out.println("Enter the value");

           int n1=new java.util.Scanner(System.in).nextInt();
            int num, rem=0, sum=0;
    
           num=n1;
       
while(num>0)
{
  rem=num%10;
  sum=sum+rem;
  num=num/10;
}

         if(n1%sum==0)
  {
               System.out.println(n1 + " is a Harshad number ");
          }
  else
  {
               System.out.println(n1 + " is a not Harshad 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++)                          {              ...