write a program to find if a given number is even or odd
Answers
Answered by
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
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
English,
3 months ago