The following summation is an approximation for computing the natural logarithm of a value x:
log(x) =(x-1)-(1/2)*pow((x-1),2)+ (1/3)*pow((x-1),2)-(1/4)*pow((x-1),4)
Write a C++ program that reads three values of x (x≠0) from the user and displays the values of their approximated logarithms as well as the real values of their logarithms and the difference between
the two values. .