English

Write the program to find the sum of the following series: S = a + a2 + a3 + .................... + an - Computer Applications

Advertisements
Advertisements

Question

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

S = a + a2 + a3 + .................... + an

Answer in Brief

Solution

import java.util.*;
public class Q3a
{public static void main(String args[])
{int a, n; 
double term, sum = 0;
Scanner obj = new Scanner(System.in);
System.out.println("Enter the value of a");
a = obj.nextInt();
System.out.printin("Enter the value of n");
n = obj.nextInt();
for (int i = 1; i <= n; i++)
{
term = Math.pow(a, i);
System.out.printIn(term); // optional print
sum = sum + term;
}
Systern.out.println("Sum of the series = " +sum);
}}
shaalaa.com
  Is there an error in this question or solution?
Chapter 1.09: Iterative Constructs in Java - EXERCISES [Page 124]

APPEARS IN

Avichal Computer Applications [English] Class 10 ICSE
Chapter 1.09 Iterative Constructs in Java
EXERCISES | Q VI. 3. (a) | Page 124
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×