w3resource

Java: Compute a specified formula


Formula Computation

Write a Java program to compute a specified formula.

Specified Expression :
4.0 * (1 - (1.0/3) + (1.0/5) - (1.0/7) + (1.0/9) - (1.0/11))

Pictorial Presentation:

Java: Compute a specified formula

Sample Solution:

Java Code:

public class Exercise10 { 
    public static void main(String[] args) {
        // Calculate the result of an alternating series and store it in 'result'
        double result = 4.0 * (1 - (1.0/3) + (1.0/5) - (1.0/7) + (1.0/9) - (1.0/11));
        
        // Print the calculated result
        System.out.println(result);
    }
}

Sample Output:

2.9760461760461765

Flowchart:

Flowchart: Java exercises: Compute a specified formula

For more Practice: Solve these Related Problems:

  • Write a program that computes the formula but allows the user to change the numerator and denominator.
  • Modify the program to compute a similar mathematical series with more terms.
  • Write a program that evaluates the formula using recursion instead of iteration.
  • Compute a different formula and compare results with the given formula.

Java Code Editor:

Previous: Write a Java program to compute the specified expressions and print the output.
Next: Write a Java program to print the area and perimeter of a circle.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.