Computer Science, asked by matthewbutterfield, 19 days ago

What is output by the following algorithm if the user enters 3, 8 and 10?

OUTPUT "Please enter values for a, b and c"

INPUT a

INPUT b

INPUT c

x ← a * b + c

y ← (b + c) / a

z ← x DIV y

w ← x MOD y

x ← x + y

OUTPUT x

OUTPUT y

OUTPUT z

OUTPUT w

Answers

Answered by kavitahari04
1

Answer:

INPUT a

INPUT b

INPUT c

x ← a * b + c

y ← (b + c) / a

z ← x DIV y

w

Similar questions