/*----- metric.txt ----- This library provides the following functions for converting English measurements to their metric counterparts: feetToMeters(): converts measurements in feet to meters // Add other function descriptions here ===> Add other documentation required by your instructor. metric.h contains the function prototypes, metric.cpp the function definitions, and metric.txt documentation for these functions. ---------------------------------------------------------------------*/ /*------------------------------------------------------------ feetToMeters() converts feet into meters. Receives: feet, the (real) number of feet to be converted. Precondition: feet >= 0. Returns: The equivalent number of meters. ---------------------------------------------------------------------*/ double feetToMeters(double feet);