KnowledgeBoat Logo
|
LoginJOIN NOW

Computer Applications

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

1/√1 + 2/√2 + 3/√3 + … + 10/√10

Java

Java Iterative Stmts

2 Likes

Answer

public class KboatSeries
{
    public static void main(String args[]) {    
        double sum = 0;
        for (int i = 1; i <= 10; i++)
            sum += i / Math.sqrt(i);
        System.out.println("Sum = " + sum);
    }
}

Output

BlueJ output of Write a program in Java to find the sum of the given series: 1/√1 + 2/√2 + 3/√3 + … + 10/√10

Answered By

1 Like


Related Questions