Computer Science, asked by fanofkimjisoo, 9 months ago

Write an algorithm that determines whether a given number is divisible by 9 and 5

Answers

Answered by jatinshukl
0

Answer:

Start

Input number

if number%9==0 and number%5==0

then print "Divisble"

else

print "Not divisble"

Stop

Similar questions