Algorithm to find smaller of three numbers, A,B,C and min. flowchart should output/print smaller number as min

oobleck oobleck answered
1 year ago

min = A

if B < min then min = B
if C < min then min = C
output min

🤔 🤔 Ask a New Question 🤔 🤔