Write a program to calculate the result of the formula pi in java πœ‹=4(1βˆ’1/3+1/5βˆ’1/7+1/9βˆ’1/11+1/13βˆ’β‹―βˆ’1/2π‘–βˆ’1+1/2𝑖+1) with 10000 ≀ i ≀ 100000

public static void main(String[] args) { double i = 10000; double pi = 4; double p = 0; while (i <= 100000) { p = p + 4 / i - 4 / (i + 2); i = i + 4; } System.out.println("The result of the formula pi with i = 100000 is " + p); }

Questions about programming?Chat with your personal AI assistant