First digit of number is odd or even in python
Description
Python program to get input num and check whether the first digit of number num is odd or even
Input:
34
Output
ODD
Input:
67
Output:
Even
Solution
n=int(input("Enter n value:"))
while(n>10):
n=n//10
if(n%2==0):
print("even")
else:
print("odd")
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.
Input:
5
Output:
*
**
***
****
*****
****
***
**
*Solution
Input:
5
Output:
*
***
*****
*******
*********
*******
*****
***
*Solution
Input:
5
Output:
* *
** **
*** ***
**** ****
**********Solution
Input:
5
Output:
* *
** **
*** ***
**** ****
*********Solution
Input:
5
Output:
* *
** **
*** ***
**** ****
*********
**** ****
*** ***
** **
* *Solution
Input:
5
Output:
*********
*******
*****
***
*
***
*****
*******
*********Solution