I have been working on a c++ project for my computer science class, and this is my first class. I have a code written, but need help with my output. I have looked online and found a similar post from a few years ago, but it did not help me too much. Here is the description for what I am suppose to write, I have also attached my whole project specifications. I have also attached my code in which I have so far. Thanks for the help guys I really appreciate it.
Description: You are to write a C++ program in Visual Studio 2013 and link and run the program as a Win32 console application that computes the transcendental functions, sin(x) and e(x) [called sin(x) and exp(x) in <cmath>, respectively], for a given subset of a range of values of type double. The program should accept a range of values and an increment size from the user. The values of the given interval should be displayed along with the <cmath> sin(x) and exp(x) functions, your sin(x), and two versions of your exp(x) functions; the two versions of your exp(x) function. For the purpose of specification, the names of your functions will be called my_sin() and my_exp() so that they can be distinguished from the <cmath> ones. You need not know what these mean. Only follow the formulas below for your functions and use the <cmath> functions for comparison of correct values. As described in more detail below, you will output your results to a file.