Write a python program which takes a number from the user and prints if it is positive if it is a multiple of 10. Hint: Odd numbers cannot be a multiple of 10.
1
Expert's answer
2021-08-14T01:39:52-0400
n =int(input("Enter number; "))
if n>0 and n%10==0:
print(n, 'is positive number and multiple of 10.')
"assignmentexpert.com" is professional group of people in Math subjects! They did assignments in very high level of mathematical modelling in the best quality. Thanks a lot
Comments
Leave a comment