Computer Science, asked by starlegends91, 1 month ago

Write an algorithm that will accept 3 numbers as integers. Find the quotient if all these numbers are divided by 3. Display the quotient and remainder

Answers

Answered by debasish2cse
1

Answer:

step-1

start

step-2

input 3 no as a,b and c

step-3

d=a/3

e=b/3

f=c/3

step-4

display d,e and f quotient

step-5

x=a%3

y=b%3

z=c%3

step-6

display x,y and z as reminder

step-7

end

Similar questions