Write an algorithm to input two numbers and check whether they are multiple of 5 or not
Answers
Answered by
9
Answer:
Algorithm to input two numbers and check whether they are multiple of 5 or not
Step 1-
start
Step 2-
Accept no1 and no2 from user
Step 3-
If (no1 /5 ==0 && no2/5==0)
then
print Nos are multiple of 5
else
print Nos are not multiple of 5
Step 4-
Stop
Explanation:
Hope it will help
Answered by
8
Answer: Hey! Ur answer is below!
Explanation:
Step 1: Start.
Step 2:Input a number
Step 3:Check whether the number is
completely divisible by 5.
Step 4:Display the result.
Step 5:Stop.
Similar questions