Scheme Exercises

back to exercise list       previous     next

Group:     Exercise: 4/48 

Mean-2:  Average of 2 numbers

Create the function "mean2" which returns the average of its two numeric arguments.
(mean2 3 5) => 4
(mean2 4 5) => 4.5