Computer Science, asked by kvpraneethkuma123, 3 months ago

write a program to find if a given number is even or odd​

Answers

Answered by krrish4643
4

Explanation:

#include <stdio.h>

int main() {

int num;

printf("Enter an integer: ");

scanf("%d", &num);

// True if num is perfectly divisible by 2

if(num % 2 == 0)

printf("%d is even.", num);

else

printf("%d is odd.", num);

return 0;

}

Answered by pke3s1ha7
0

Answer:

Num=int(input("Enter the number:"))

if (Num%2==0):

   print("The number is even")

else:

  print("The number is odd")

Explanation:

Similar questions