Computer Science, asked by Yashkv8601, 5 months ago

WAP to check whether a number is a multiple of 8.

Answers

Answered by allysia
1

Answer:

USING PYTHON:

\\\tt n=int(inp ut("Enter\ a\ number: ")) \\\tt if \ n \%8==0: \\\tt {\qquad print("It\ is")}\\\tt  else: \\\tt {\qquad print("Is\ not")}

Similar questions