Java program to take a number as input and tells its even or odd number


Following program shows you how to take a number as input and tells its even or odd number.
This program divides input by 2, If remainder is zero it prints even otherwise it prints odd

import java.util.Scanner;

public class BasicMath10 {

	public static void main(String[] args) {

		System.out.println("Please enter a number:");

		Scanner in = new Scanner(System.in);
		int i = in.nextInt();

		if (i % 2 == 0) {
			System.out.println("even");
		} else {
			System.out.println("odd");
		}
	}
}

Output:

Example1:

Please enter a number:
4
even

Example2:

Please enter a number:
-5
odd