Search This Blog

Sunday, 6 November 2016

Program to Check Whether a Number is Even or Odd

#include <stdio.h>
int main()
{
    int number;

    printf("Enter an integer: ");
    scanf("%d", &number);

    // True if the number is perfectly divisible by 2
    if(number % 2 == 0)
        printf("%d is even.", number);
    else
        printf("%d is odd.", number);

    return 0;
}
Output
Enter an integer: -7
-7 is odd.

No comments:

Post a Comment