write a program called cheak odd Even which prints " odd Number " if the int variable " number " is odd ,or " Even Number " otherwise.
Answers
Answered by
1
Answer:
if ( number % 2 == 0 ):
print("Even Number")
else:
print("Odd Number")
Similar questions
Math,
5 months ago
English,
5 months ago
Social Sciences,
5 months ago
Psychology,
10 months ago
Math,
10 months ago
Math,
1 year ago