Friday, July 31, 2020

Write a program to input a number and check whether it is Trimorphic Number or not? (5^3=125, number is present in the last)

66)  Write a program to input a number and check whether it is Trimorphic Number or not? (53=125, number is present in the last)


import java.util.*;
public class Trimorphic
{
    public static void main(String args[ ])
   {
              Scanner sc = new Scanner (System.in);
              System.out.println("Enter a number");
              int a = sc.nextInt();
              int k = a;
              int c = 0;
              while(k>0)
              {
                  k=k/10;
                  c++;
              }
              int p = a*a*a;
              int x = (int)Math.pow(10,c);
              int m = p%x;
              if(m==a)
              {
                  System.out.println("Entered number is a TRIMORPHIC Number");
              }
              else
              {
                  System.out.println("Entered number is not a TRIMORPHIC Number");
              }
   }
}

Output : 



Write a program to find Frequency of Every Digit in a number?(1616336331, 1 - 3 times, 3 - 4 times, 6 – 3 times)

67)  Write a program to find Frequency of Every Digit in a number?(1616336331,  1 - 3 times, 3 - 4 times, 6 – 3 times)


import java.util.*;
public class Frequency_of_digits
{
    public static void main(String args[ ])
   {
              Scanner sc = new Scanner (System.in);
              System.out.println("Enter a number");
              int b = sc.nextInt();
              int a = b;
              while(a>0)
              {
                  int d = a%10;
                  int z = b;
                  int f = 0;
                  int t = 0; 
                while(z>0)
                {
                    if(d==z%10&&z>a)
                    {
                        t++;
                    }
                    else if(d==z%10&&t==0)
                    {
                        f++;
                    }
                    z=z/10;
                }
                a=a/10;
                if(f>0)
                {
                System.out.println("FREQUENCY OF "+d+" = "+f+" Times");
                }
              }
   }
}

Output : 



Write a program to input a number and check whether it is Automorphic Number or not?(25^2=625, 5^2=25)

65)  Write a program to input a number and check whether it is Automorphic Number or not?(252=625, 52=25)


import java.util.*;
public class Automorphic
{
     public static void main(String args[ ])
   {
              Scanner sc = new Scanner (System.in);
              System.out.println("Enter a number");
              int a = sc.nextInt();
              int k = a;
              int c = 0;
              while(k>0)
              {
                  k=k/10;
                  c++;
              }
              int p = a*a;
              int x = (int)Math.pow(10,c);
              int m = p%x;
              if(m==a)
              {
                  System.out.println("Entered number is a AUTOMORPHIC Number");
              }
              else
              {
                  System.out.println("Entered number is not a AUTOMORPHIC Number");
              }
   }
}

Output : 




Write a program to input a number and check whether it is Kaprekar’s Number or not? (297=297*297=88209=88+209=297)

64)  Write a program to input a number and check whether it is Kaprekar’s Number or not? (297=297*297=88209=88+209=297)


import java.util.*;
public class Kaprekars
{
    public static void main(String args[ ])
   {
              Scanner sc = new Scanner (System.in);
              System.out.println("Enter a number");
              int a = sc.nextInt();
              int k = a;
              int c = 0;
              while(k>0)
              {
                  k=k/10;
                  c++;
              }
              int p = a*a;
              int x = (int)Math.pow(10,c);
              int m = p%x;
              int n = p/x;
              if((m+n)==a)
              {
                  System.out.println("Entered number is a KAPREKAR's Number");
              }
              else
              {
                  System.out.println("Entered number is a KAPREKAR's Number");
              }
   }               
}

Output : 




Write a program to input a number and find the Super Digit of this number.(7645, number’s largest digit+1=super digit, 7+1=8)

63)  Write a program to input a number and find the Super Digit of this number.(7645, number’s largest digit+1=super digit, 7+1=8)


import java.util.*;
public class Super_digit
{
   public static void main(String args[ ])
   {
              Scanner sc = new Scanner (System.in);
              System.out.println("Enter a number");
              int a = sc.nextInt();
              int c = 0;
              while(a>0)
              {
                  int d = a%10;
                  if(d>c)
                  {
                      c=d;
                  }
                  a=a/10;
              }
              System.out.println("Super digit = "+(c+1));
   }
}

Output :





 

Write a program to input a numbers and find the Smallest and Largest Digit of this number.(2784, smallest digit -2, largest digit -8)

62)  Write a program to input a numbers and find the Smallest and Largest Digit of this number.(2784, smallest digit -2, largest digit -8)


import java.util.*;
public class Smallest_Largest_digit
{
    public static void main(String args[ ])
   {
              Scanner sc = new Scanner (System.in);
              System.out.println("Enter a number");
              int a = sc.nextInt();
              int b = 9;
              int c = 0;
              while(a>0)
              {
                  int d = a%10;
                  if(d>c)
                  {
                      c=d;
                  }
                  else if(d<b)
                  {
                      b=d;
                  }
                  a=a/10;
              }
              System.out.println("Smallest digit = "+b);
              System.out.println("Largest digit = "+c);
   }
}

Output : 




Write a program to input a number and check whether it is Tech Number or not? (3025= (30+25)^2 = (55)^2 =3025 so it is tech number).

61)  Write a program to input a number and check whether it is Tech Number or not? (3025= (30+25)2 = (55)2 =3025 so it is tech number).


import java.util.*;
public class Tech_number
{
    public static void main(String args[ ])
   {
              Scanner sc = new Scanner (System.in);
              System.out.println("Enter a number");
              int a = sc.nextInt();
              int k = a;
              int c = 0;
              while(k>0)
              {
                  k=k/10;
                  c++;
              }
              if(c%2==0)
              {
                  int x = (int)Math.pow(10,(c/2));
                  int m = a%x;
                  int n = a/x;
                  int y = (int)Math.pow((m+n),2);
                  if(y==a)
                  {
                      System.out.println("Entered number is a TECH Number");
                  }
                  else
                  {
                      System.out.println("Entered number is not a TECH Number");
                  }
              }
              else
            {
                      System.out.println("Entered number is not a TECH Number");
            }
   }
}

Output : 


Thursday, July 30, 2020

Write a program to input a number and check whether it is Armstrong number (Narcissistic Number) or not? (153=13+53+33=1+125+27=153)

60)  Write a program to input a number and check whether it is Armstrong number (Narcissistic Number) or not? (153=13+53+33=1+125+27=153)


import java.util.*; 
public class Armstrong
{
   public static void main(String args[ ])
   {
              Scanner sc = new Scanner (System.in);
              System.out.println("Enter a number");
              int a = sc.nextInt();
              int k = a;
              int c = 0;
              while(k>0)
              {
                  k=k/10;
                  c++;
              }
              k = a;
              int s = 0;
              while(k>0)
              {
                  int d = k%10;
                  s=s+(int)Math.pow(d,c);
                  k=k/10;
              }
              if(s==a)
              {
                  System.out.println("Entered number is a ARMSTRONG Number ");
              }
              else
              {
                  System.out.println("Entered number is not a ARMSTRONG Number ");
              }
   }
}

Output : 



Tuesday, July 28, 2020

Write a program to input a number and check whether it is Lychrel number or not? (56 its reverse 65, 56+65=121 is a palindrome Number so it is Lychrel Number.)

58)  Write a program to input a number and check whether it is Lychrel number or not? (56 its reverse 65, 56+65=121 is a palindrome Number so it is Lychrel Number.)


import java.util.*;
public class Lychrel
{
    public static void main(String args[ ])
   {
              Scanner sc = new Scanner (System.in);
              System.out.println("Enter a number");
              int a = sc.nextInt();
              int k = a; 
              int r = 0;
              while(k>0)
              {
              int d = k%10;
              r=(r*10)+d;
              k=k/10;
              }
              int p = a+r;
              int m = 0;
              while(p>0)
              {
              int d = p%10;
              m=(m*10)+d;
              p=p/10;
              }
              if(m==a+r)
              {
                  System.out.println("Entered number is a LYCHREL Number ");
              }
              else
              {
                  System.out.println("Entered number is not a LYCHREL Number ");
              }
   }
}

Output : 



Write a program to input a number and check whether it is Special number (krishnamurti number, strong number) or not? (145=1!+4!+5!=1+24+120=145)

59)  Write a program to input a number and check whether it is Special number (krishnamurti number, strong number) or not? (145=1!+4!+5!=1+24+120=145)


import java.util.*;
public class Special_number
{
   public static void main(String args[ ])
   {
              Scanner sc = new Scanner (System.in);
              System.out.println("Enter a number");
              int a = sc.nextInt();
              int k = a;
              int s = 0;
              while(k>0)
              {
                  int d = k%10;
                  int p = 1;
                  for(int i = 1;i<=d;i++)
                  {
                      p=p*i;
                  }
                  s=s+p;
                  k=k/10;
              }
              if(s==a)
              {
                  System.out.println("Entered number is SPECIAL(KRISHNAMURTI,STRONG) Number ");
              }
              else
              {
                   System.out.println("Entered number is not a SPECIAL(KRISHNAMURTI,STRONG) Number ");
              }
   }
}

Output : 


 


Write a program to input a number and check whether it is Super Palindrome Number or not?(11 is a palindrome and also its square is palindrome ,so it is super palindrome)

57)  Write a program to input a number and check whether it is Super Palindrome Number or not?(11 is a palindrome and also its square is palindrome ,so it is super palindrome)


import java.util.*; 
public class Super_Palindrome
{
    public static void main(String args[ ])
   {
              Scanner sc = new Scanner (System.in);
              System.out.println("Enter a number");
              int a = sc.nextInt();
              int k = a;
              int r = 0;
              while(k>0)
              {
              int d = k%10;
              r=(r*10)+d;
              k=k/10;
              }
              if(r==a)
              {
                  int m = a*a;
                  int y = 0;
                  while(m>0)
                  {
                        int d = m%10;
                        y=(y*10)+d;
                        m=m/10;
                  }
                  if(y==(a*a))
                  {
                      System.out.println("Entered number is a SUPER PALINDROME Number ");
                  }
                  else
                  {
                      System.out.println("Entered number is not a SUPER PALINDROME Number ");
                  }
              }
              else
              {
                  System.out.println("Entered number is not a SUPER PALINDROME Number ");
              }
   }
}

Output : 


Monday, July 27, 2020

Write a program to input a number and check whether it is Palindrome Number or not?(121=121)

56)  Write a program to input a number and check whether it is Palindrome Number or not?(121=121)


import java.util.*;
public class Palindrome
{
     public static void main(String args[ ])
   {
              Scanner sc = new Scanner (System.in);
              System.out.println("Enter a number");
              int a = sc.nextInt();
              int k = a;
              int r = 0;
              while(k>0)
              {
              int d = k%10;
              r=(r*10)+d;
              k=k/10;
              }
              if(r==a)
              {
                  System.out.println("Entered number is a PALINDROME Number ");
              }
              else
              {
                  System.out.println("Entered number is not a PALINDROME Number ");
              }
   }
}

Output : 


  
palindrome-number



Write a program to find Reverse of any number?(123=321)

55)       Write a program to find Reverse of any number?(123=321)


import java.util.*;
public class Reverse_number
{
    public static void main(String args[ ])
   {
              Scanner sc = new Scanner (System.in);
              System.out.println("Enter a number");
              int k = sc.nextInt();
              int r = 0;
              while(k>0)
              {
              int d = k%10;
              r=(r*10)+d;
              k=k/10;
              }
              System.out.println("REVERSE number = "+r);
   }
}

Output : 


Write a program to input a number and check whether it is Neon Number or not?(9^2 = 81 , 8+1=9 , 9=9)

54)  Write a program to input a number and check whether it is Neon Number or not?(92 = 81 , 8+1=9 , 9=9)


import java.util.*;
public class Neon_number
{
    public static void main(String args[ ])
   {
          Scanner sc = new Scanner (System.in);
          System.out.println("Enter a number");
          int a = sc.nextInt();
          int s = 0;
          int p = a*a;
          while(p>0)
          {
          int d = p%10;
          s=s+d;
          p=p/10;
          }
          if(a==s)
          {
              System.out.println("Entered number is a NEON number ");
          }
          else
          {
              System.out.println("Entered number is not a NEON number ");
          }
   }
}

Output : 

Write a program to input a number and check whether it is Spy Number or not? (123 = 1+2+3 = 6 , 1*2*3 = 6 , 6=6)

53)  Write a program to input a number and check whether it is Spy Number or not? (123 = 1+2+3 = 6  , 1*2*3 = 6 , 6=6)

import java.util.*;
public class Spy_number
{
    public static void main(String args[ ])
   {
          Scanner sc = new Scanner (System.in);
          System.out.println("Enter a number");
          int p = sc.nextInt();
          int s = 0;
          int x = 1;
          while(p>0)
          {
          int d = p%10;
          s=s+d;
          x=x*d;
          p=p/10;
          }
          if(x==s)
          {
              System.out.println("Entered number is a SPY number");
          }
          else
          {
              System.out.println("Entered number is not a SPY number");
          }
   }
}

Output : 

 jhvghvgk ;nkjn ,nkjhj