First digit of number is odd or even in python
Python program to get input num and check whether the first digit of number num is odd or even
Sample Input 1:
34
Sample Output 1:
ODD
Sample Input 2:
67
Sample Output 2:
Even
Program or Solution
n=int(input("Enter n value:"))
while(n>10):
n=n//10
if(n%2==0):
print("even")
else:
print("odd")
Program Explanation
Given number is continously divided by 10, till it becomes lesser than 10 and greater than 0. and the final answer is first digit of given number.
If the first digit is divided by 2 then it is odd else it is Even.
Comments
Related Programs
- Print Natural numbers in pyhon
- Print Whole numbers in python
- Print ODD numbers in python
- Print Even numbers in python
- Print Natural numbers in reverse in python
- Sum of natural numbers in python
- N ODD numbers in python
- N Even numbers in python
- sum of Even numbers in python
- Sum of odd numbers in pyhton
- Sum of n numbers in python
- First digit of number in python
- Multiply without * operator in Python
- Multiplication Table in Python
- Multiplication Table in Python till M
- Sum of postive numbers in python
- Decimal to Binary in Python
- Binary to Decimal in python
- Factorial in Python
coming Soon
coming Soon