Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Exercises: 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) {
        double result = 4.0 * (1 - (1.0/3) + (1.0/5) - (1.0/7) + (1.0/9) - (1.0/11));
        System.out.println(result); //
    }
}

Sample Output:

2.9760461760461765

Flowchart:

Flowchart: Java exercises: Compute a specified formula

Java Code Editor:

Contribute your code and comments through Disqus.

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.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe