-->

Hello,This is me!

ITEngineer8995

Professional Coder Coding is my passion

About me

Hello

I'mITEngineer8995

Spatial Data Specialist

Do you want all of your codes in one place?? Then you are landed on the right blog... Here you will find varieties of codes of various languages starting from noob to advance with their samples. Do learn, execute and share your knowledge with others. Do visit my YouTube Channel for execution of these codes .

Experience

Video Clone Detector using Hadoop

2017-2018

A detector which differentiates copied videos from the original ones using Hadoop.

Portfolio

Java Program To Check Prime Number

 

Java Program To Check Prime Number

In this java program, we check whether the user input number is prime or not.

A prime number is a natural number greater than 1 that is not a product of two small natural numbers.

E.g. 2, 3, 5 etc are prime numbers.

Steps :

Step 1 : Import Scanner class

Step 2 : Create class PrimeChec

Step 3 : Create main method

Step 4 : Create variable temp

Step 5 : Create object of Scanner 

Step 6 : Ask the user to enter any number by using System.out.print method

Step 7 : Create variable num and store the user entered number in it.

Step 8 : Close the Scanner class

Step 9 : Apply for loop where i is equal to 2, i is greater than equal to num divide by 2 and increment i by 1
Step 10 : Store num % i in the variable temp

Step 11 : Apply if where temp is equal to zero

Step 12 : Initialize isPrime to False

Step 13 : If isPrime is true then the number is prime else not

Step 14 : Print the number

Program :

import java.util.Scanner;

public class PrimeChec 

    {

        public static void main(String[]args)

        {

            int temp;

            boolean isPrime = true;

            Scanner sc = new Scanner(System.in);

            System.out.println("Enter any number:");

            //capture the input in an integer

            int num = sc.nextInt();

            sc.close();

            for(int i=2; i<=num/2; i++)

            {

                temp = num%i;

                if(temp==0)

                {

                    isPrime=false;

                    break;

                }

            }

            //If isPrime is true then the number is prime else not

            if(isPrime)

                System.out.println(num + "is a Prime Number");

            else

                System.out.println(num + "is not a Prime Number");  

        }

}

Output :

Enter any number:
6
6is not a Prime Number

For execution of the same do visit my YouTube Channel :

Java Program To Break Integer into Digits

 

Java Program To Break Integer into Digits

In this Java Program, we break Integers into Digits

Here we use Scanner class to get input from the user. First While loop is use to count the digits in the input number and second while loop is use to extract the digits from the input number using modulus operator.

Step 1 : Import Scanner Class

Step 2 : Create a Class IntegerToDigit

Step 3 : Create main method

Step 4 : Initialize num, temp, digit and count and store 0 in count

Step 5 : Ask the user to enter any number

Step 6 : Store the user entered number into num variable

Step 7 : Close the Scanner class to avoid memory leaks

Step 8 : Create a copy of input number

Step 9 : Store the num into temp

Step 10 : Count the digits into the input number

Step 11 : Apply While loop where num is greater than zero

Step 12 : Divide num by 10 and store the result into num variable

Step 13 : Increment count by one.

Step 14 : Apply another while loop where temp is greater than zero and store the result of temp % 0 into digit.

Step 15 : Print the Digit

Step 16 : Divide temp by 10 and store the result into temp variable

Step 17 : Decrement count by one.

Program :

import java.util.Scanner;

public class IntegerToDigit {

    public static void main(String[]args)

    {

        int num, temp, digit, count = 0;

        //getting the number from user

        Scanner sc = new Scanner(System.in);

        System.out.print("Enter any number:");

        num = sc.nextInt();

        sc.close();

        //creating a copy of the input number

        temp = num;

        //counting digits int the input number

        while(num > 0)

        {

            num = num / 10;

            count++;

        }

        while(temp > 0)

        {

            digit = temp % 10;

            System.out.println("Digit at place "+count+" is:"+digit);

            temp = temp / 10;

            count --;      

        }

    }    

}

Output :

Enter any number:7891

Digit at place 4 is:1

Digit at place 3 is:9

Digit at place 2 is:8

Digit at place 1 is:7

For execution of the same do visit my YouTube Channel :

https://youtu.be/yYfE4xFPj4s

ITEngineer8995
India

SEND ME A MESSAGE

Search This Blog

Powered by Blogger.

Pages