English

Write the program to find the sum of the following series: S = a2+a5+a8+a11+.................+a20 - Computer Applications

Advertisements
Advertisements

Question

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

S = `a/2 + a/5 + a/8 + a/11 + ................. + a/20`

Answer in Brief

Solution

import java.util.*;
public class Q3c
{public static void main(String args[])
{float sum = 0, term = 0;
Scanner obj = new Scanner(System.in);
System.out.printIn("Enter the value of a");
int a = obj.nextInt();
for (int i = 2; i <= 20; i = i + 3)
{ term = (float) a / i;
sum += term; // sum = sum + term
}
System.out.printin("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. (c) | Page 124
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×