What is the program to find …
CBSE, JEE, NEET, CUET
Question Bank, Mock Tests, Exam Papers
NCERT Solutions, Sample Papers, Notes, Videos
Posted by Shravan Acharya 1 year, 8 months ago
- 1 answers
Related Questions
Posted by Punam Kumari 4 months, 1 week ago
- 0 answers
Posted by Raju Tandan 4 months, 1 week ago
- 1 answers
Posted by Account Deleted 4 months ago
- 1 answers
Posted by Vedant Ranmale 4 months, 1 week ago
- 0 answers
Posted by Ananya Ps 4 months, 1 week ago
- 2 answers
Posted by Harsh Dhanjal 4 months, 2 weeks ago
- 1 answers
Posted by Sakshi Thakur 4 months, 1 week ago
- 1 answers
Posted by Rahul Kumar 4 months, 1 week ago
- 0 answers
myCBSEguide
Trusted by 1 Crore+ Students
Test Generator
Create papers online. It's FREE.
CUET Mock Tests
75,000+ questions to practice only on myCBSEguide app
Preeti Dabral 1 year, 8 months ago
def check(n):
if (n < 2):
return (n % 2 = = 0)
return (check (n-2))
#-- main --
n = int (raw_input ("Enter a number:"))
if check (n):
print ("Number is Even")
else:
print ("Number is Odd")
0Thank You