Write a program which uses the Bisection Algorithm to solve the equation x^3 + 5
ID: 3645112 • Letter: W
Question
Write a program which uses the Bisection Algorithm to solve the equationx^3 + 5 = e^x for x >= 0.
Your program should prompt the user to input values of x = a and x = b. If f (a) and
f (b) are not of opposite sign, the program should continue to prompt the user for values of
x = a and x = b until values of x = a and x = b are entered such that f (a) and f (b) are of
opposite sign.
Maximum allowable error should be 10^-5.
I have everything except I cant get it to show the answer to the equation.