My book is telling me to write a program that takes in the value of "x" and outputs x^n/n where n is 1-100 (100 separate values to display). My book tells me to use the exp(x) function...
This seems like it should be easy, but I don't know how to write this function.
I know pow is written pow (base, exp) ... I think. How is exp(x) written?
From what I understand on this question, I need the user to input the base, and then the program will raise the base to a power, then divide it by the same number that the power was.
Please help me with this notation...I looked at the explanation on this site, but it doesn't give me enough information to understand what to do for different bases... or I didnt understand it that well.