Computer Science, asked by ayankasaha8893, 9 days ago

Writing a algorithm to take input of a number and print whether the number is divisible by 5 or not.

Answers

Answered by devindersaroha43
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