Write a program to compute the following series:

a) Write a program to compute the following series:
x + x^3 / 3! + x^5/ 5! + …
To a given accuracy for x from 00 to 1800 in the steps of 100, use a inbuilt function FACT(n) to compute the factorial.


Leave a Reply