Writing a algorithm to take input of a number and print whether the number is divisible by 5 or not.
Answers
Answered by
5
Answer:
Explanation:
Start
Input n, 2
Calculate if (n%2==0) then is divisible else not divisible
Output number is divisible or not
Stop
Similar questions