class from descriptionMon, 27 Mar 2023

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

import java.util.Scanner; class ComputePi { public static void main(String[] args) { Scanner sc = new Scanner(System.in); double n = sc.nextDouble(); double s = 0; for (int i = 0; i <= n; i++) { s += Math.pow(-1, i) / (2 * i + 1); } System.out.println(4 * s); } }

Questions about programming?Chat with your personal AI assistant