program to display 3digit even number
Answers
Answered by
0
Program in the basis of Python coding,
3num=int(input('Enter a three digit number(100-999) :'))
if 3num>100 and 3num<=999:
print 3num
else:
print('Check the number of digits inputted')
Similar questions