find the average maximum minimum and sum of three numbers given by the users

3 answers

read x,y,z
sum = x+y+z
min = x
if y < min then min = y
if z < min then min = z
<similarly for max>
Select areason
Male