KnowledgeBoat Logo
LoginJOIN NOW

Computer Applications

Write a program in Java to find the sum of the given series:

x1 - x2 + x3 - x4 … - xn , where x = 3

Java

Java Iterative Stmts

9 Likes

Answer

import java.util.Scanner;

public class KboatSeries
{
    public static void main(String args[]) {
        Scanner in = new Scanner(System.in);
        System.out.print("Enter n: ");
        int n = in.nextInt();
        int x = 3;
        double sum = 0;
        
        for (int i = 1; i <= n; i++) {
                double term = Math.pow(x, i);
                if (i % 2 == 0)
                    sum -= term;
                else
                    sum += term;
            }
            System.out.println("Sum = " + sum);
    }
}

Output

BlueJ output of Write a program in Java to find the sum of the given series: x 1 - x 2 + x 3 - x 4 … - x n , where x = 3

Answered By

3 Likes


Related Questions