KnowledgeBoat Logo

Java Series Programs

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

S = 12/a + 32 / a2 + 52 / a3 + …… to n terms

Java

Java Iterative Stmts

ICSE

21 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 a: ");
        int a = in.nextInt();
        System.out.print("Enter n: ");
        int n = in.nextInt();
        double sum = 0.0;
        for (int i = 1, j = 1; i <= n; i++, j=j+2)
            sum += Math.pow(j, 2) / Math.pow(a, i);
        System.out.println("Sum = " + sum);
    }
}

Output

BlueJ output of Write a program in Java to find the sum of the given series: S = 1 2 /a + 3 2 / a 2 + 5 2 / a 3 + …… to n terms

Answered By

9 Likes