Write an interactive cube root program that handles both positive and negative inputs. Note that the pow() function cannot take the cube root of a negative number. Thus if x is negative, root = pow(x, 1./3.); will produce an error message. In that case, you can compute the cube root this way: root = -pow(-x, 1./3.);