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:

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:

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.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join