Computer Science, asked by rexina2418, 1 month ago

write a program to check entered number is divisible by 5 or not

Answers

Answered by XxSilentAgent47xX
1

Answer:

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. To check divisibility with 11, check if(num % 11 == 0) then num is divisible by 11.22

Explanation:

here is your answers

Answered by sunnyrana9729
0

Explanation:

input the no from user 11.22

Similar questions