Monday, September 14, 2020

Odd and Even Number Checker in Java

 Write a program using Java programming language to ask the user to give a number and then the program will check and determine whether the given number is an odd or even number and display the results on the  screen.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com

Program Listing

// odd_even.java
// Jake Rodriguez Pomperada,MAED-IT,MIT
// www.jakerpomperada.com
// jakerpomperada@gmail.com
// Bacolod City, Negros Occidental, Philippines.

package odd_even;

import java.util.Scanner;

public class odd_even {

public static void main(String[] args) {
        Scanner reader = new Scanner(System.in);
        
        System.out.println("\n");
    System.out.print("\t\tOdd and Even Number Checker in Java");
    System.out.println("\n");
    
        System.out.print("\tEnter a number: ");
        int num = reader.nextInt();
        
        System.out.println();
        
        if(num % 2 == 0)
            System.out.println("\tThe given number " 
            + num + " is an Even Number.");
        else
            System.out.println("\tThe given number " 
                     +num + " is an Odd Numbe.r");
System.out.println("\n");
     System.out.println("\tEnd of Program");
     System.out.println("\n\n");
}
}



No comments:

Post a Comment