Complete the method oddEven. You should use the int parameter num and determine if it is odd or even, and print the result code example

Example 1: odd or even python

# Python program to check if the input number is odd or even.
# A number is even if division by 2 gives a remainder of 0.
# If the remainder is 1, it is an odd number.

num = int(input("Enter a number: "))
if (num % 2) == 0:
   print("{0} is Even".format(num))
else:
   print("{0} is Odd".format(num))

Example 2: even or odd in java

import java.util.Scanner;
public class evenOrOdd{
  
  public static void main(String[] args){
    Scanner in = new Scanner(System.in);
    System.out.println("Please enter a non-negative number: ");
    int x = in.nextInt();
    if (x % 2 == 0)
    {
      System.out.println("The number is even");
    }
    else {
      System.out.println("The number is odd");
    }
  }
}

Example 3: python even or odd

injd = int(input('Enter a number'))
n = injd % 2
if n > 0:
  print('This is an odd number')
else:
  print('This is an even number')

Tags:

Java Example