The assignment is about computing the sine of the angle using the built in trigonometric function and computing the sine using the Taylor series approximation.
• Prompt for input angle in units of radians.
• Read input angle in units of radians.
• Compute and output the sine of the input angle using built-in trigonometric functions.
• Compute and output the Taylor series approximation of sin(x) including terms up to order seven (i.e., 7 x ).
***It won't execute the expression that I put*** Please help
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
double angle= 0.0;
double sin= 0.0;
double value;
cout << "Please Enter an Angle in Units of Radians...";
cin>> angle;