I'm new to java and i'm trying to make a program that calculates pi using the Leibniz series with 100000 iterations. I need to define a method and call it. When I run my program I don't get a result. Could someone please tell me what I'm doing wrong and help me get back on track?
public class pi
{
public static void main(String[] args)
{
double pi = computePi(100000);
}
public static double computePi(int count)
{
double pi = 0;
count = 100000;
for(int i =0; i<count; i++)
{
pi = Math.pow(-1,i)/(2*i+1);
}
return pi;
}
}
If you want to print it to the console, try:
I can't say much for the precision, though.