English

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

Advertisements
Advertisements

Question

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

S = `a/(2!) - a/(3!) + a/(4!) - a/(5!) + ............................... + a/(10!)`

Answer in Brief

Solution

import java.util.*;
public class Q1d
{public static void main(String args[])
{int n, cnt = 1;
double a, fact, term, sum = 0;
Scanner obj = new Scanner(System.in);
System.out.printIn("Enter the value of a");
a = obj.nextDouble();
for (int i = 2; i <= 10; i++)
{fact = 1;
for (int j = 1; j <= i; j++)
fact = fact * j;

term = a / fact;
System.out.printn(term); // optional print

if (cnt % 2 == 0) // even term
sum = sum − term; 
else // odd term
sum = sum + term;
cnt++;
}System.out.printIn("Sum of the series = " + (float)sum);
}}
shaalaa.com
  Is there an error in this question or solution?
Chapter 1.1: Nested Loop - EXERCISES [Page 145]

APPEARS IN

Avichal Computer Applications [English] Class 10 ICSE
Chapter 1.1 Nested Loop
EXERCISES | Q IV. 1. (d) | Page 145
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×