Computer Science, asked by kkkp4191, 9 months ago

Write a program to input a number and find whether a number is multiple of 5 or not

Answers

Answered by sy123457890123456890
0

Answer:cls

Input “ enter any number“;n

If n mod5=0 then

Print “ exactly divisible by 5 “

Else

?”not exactly divisible by 5”

End if

End

Explanation:

Similar questions