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

1 answer

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