1.Computing cos(x) using the cosine series: Recall that cos(x) is given by the following series:
View Answers
January 19, 2009 at 3:10 AM
Hi friend,
Code to help in solving the problem :
class MathAcos
{
public static void main(String[] args)
{
double x = 0.50;
System.out.println(Math.acos(x));
}
}
Thanks
Related Tutorials/Questions & Answers: