w3resource

Java: Compute a specified formula

Java Basic: Exercise-10 with Solution

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

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.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://www.w3resource.com/java-exercises/basic/java-basic-exercise-10.php