12. Write a program to enter any number and check it is divisible by 7 or not ?
Answers
Answered by
4
Answer:
hi...
it's a python program
Explanation:
n=int(input("enter the number"))
if n%7==0:
print("it's divisible by 7")
else:
print("it's not divisible by 7')
hope it helps you ☺️
Similar questions