Write a function called compute_min(value_1, value_2, value_3), which returns the minimum of the 3 floating point parameters to the function.
compute_min(value_1, value_2, value_3)
NOTE: Do not use the min function in this activity.