Java program to check if a number is odd or even: if a number is divisible by two then it is even, otherwise, it is odd. We use modulus operator to find remainder in our program. For an even number remainder will be zero when it is divided by two and will be one for an odd number.
File Name - evenorodd.java
Output -
0 comments: