Computer Science, asked by shoryatyagi280667, 1 month ago

CREATE A PROGRAM TO CHECK WHETHER A NIUMBER IS COMPLETELY DIVISIBLE BY 3 OR NOT.

Answers

Answered by AvdhootMogal
0

Answer:

num=int(input("Enter a number: "))

if (num%3==0):

   print("The number is divsible by 3")    

else:

   print("The number is not divisible by 3")

Similar questions