Task 1: Check if a Number is Even or Odd Problem Statement: Write a Python program that: Takes an integer input from the user. Checks whether the number is even or odd using an if-else statement.
This Python program checks whether a given integer is even or odd. The program prompts the user to input an integer, evaluates the number, and then displays whether the number is even or odd. Takes an ...