KnowledgeBoat Logo

Java Series Programs

Write the program to find the sum of the following series:

S = (1/a) + (2/a2) + (3/a3) + ……. to n

Java

Java Iterative Stmts

ICSE

14 Likes

Answer

import java.util.Scanner;

public class KboatSeries
{
    public void computeSeriesSum() {

        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;

        for (int i = 1; i <= n; i++) {
            sum += (i / Math.pow(a, i));
        }
        
        System.out.println("Sum=" + sum);
    }
}

Output

BlueJ output of Write the program to find the sum of the following series: (d) S = (1/a) + (2/a 2 ) + (3/a 3 ) + ……. to n

Answered By

7 Likes