[solved]-Write Program Print Following Table Represents Value Sin N 0 S N 90 Approximated 3 Digits Q39008397

Write a program to print the following table represents the value of sin(n) for 0° S n < 90° approximated to 3 digits of precision Sample input/output: 0 1 2 3 4 5 6 7 8 9 0 0.000 0.017 0.035 0.052 0.070 0.087 10 0.174 0.191 0.208 0.225 0.2420.259 201 0.342 0.358 0.375 0.391 0.407 0.423 30 0.500 0.515 0.530 0.545 0.559 0.574 401 0.656 0.669 0.682 0.695 0.707 50 0.766 0.777 0.788 0.799 0.809 0.819 60 0.866 0.875 0.883 0.891 0.899 0.906 70 0.940 0.946 0.951 0.956 0.961 0.966 800.985 0.988 0.990 0.993 0.995 0.996 0.105 0.122 0.276 0.292 0.438 0.454 0.588 0.602 0.719 0.731 0.829 0.839 0.914 0.921 0.970 0.974 0.998 0.999 0.139 0.309 0.469 0.616 0.743 0.848 0.927 0.978 0.999 0.156 0.326 0.485 0.629 0.755 0.857 0.934 0.982 1.000 Note about sin(): The prototype for the sin function is in the <math> library. The argument of the sin() is given in radians, so you must convert it to degrees. Show transcribed image text Write a program to print the following table represents the value of sin(n) for 0° S n
Expert Answer
Answer to Write a program to print the following table represents the value of sin(n) for 0° S n < 90° approximated to 3 digits ... . . .
Related