Write a program that asks the user for an angle, entered in radians. The program should then display the sine, cosine, and tangent of the angle. (Use the sin, cos, and tan library functions to determine these values .) All numeric values in the output should be displayed in fixed-point notation, rounded to four decimal places of precision. Here is one sample run: Enter angle: 1.07078 sin(1.07078)=0.8776 cos(1.07078)=0.4794 tan(1.07078)=1.8304 I got this so far #include #include #include using namespace std; int main () { double radians; cout << "Enter angle:"; cin >> radians; cout << " sin(3.1415)=" << fixed << setprecision(4) << sin(radians) << endl; cout << "cos(3.1415)=" << fixed << setprecision(4) << cos(radians) << endl; cout << "tan(3.1415)=" << fixed << setprecision(4) << tan(radians) << endl; cin.ignore(); cin.get(); return 0; }

Looking for solution of this Assignment?

WHY CHOOSE US?

We deliver quality original papers

Our experts write quality original papers using academic databases.We dont use AI in our work. We refund your money if AI is detected  

Free revisions

We offer our clients multiple free revisions just to ensure you get what you want.

Discounted prices

All our prices are discounted which makes it affordable to you. Use code FIRST15 to get your discount

100% originality

We deliver papers that are written from scratch to deliver 100% originality. Our papers are free from plagiarism and NO similarity.We have ZERO TOLERANCE TO USE OF AI

On-time delivery

We will deliver your paper on time even on short notice or  short deadline, overnight essay or even an urgent essay