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:
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 and Language Statistics
- Weekly Trends and Language Statistics