Computer Science, asked by prarthanatamrakar07, 8 months ago

algorithm to check the entered number is divisible by 5 and 3 or not

Answers

Answered by rupa16429
1

Answer:

Step by step descriptive logic to check whether a number is divisible by 5 and 11 or not. Input a number from user. Store it in some variable say num . To check divisibility with 5, check if(num % 5 == 0) then num is divisible by 5.

Similar questions