Advertisements
Advertisements
प्रश्न
Write a program to find the sum of the following series:
S = `a + a/(2!) + 3/(3!) + a/(4!) + ......................... + a/(n!)`
थोडक्यात उत्तर
उत्तर
import java.util.*;
public class Q1b
{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) / i; .
System.out.printIn(term); // optional print
sum = sum + term;
}
System.out.println("Sum of the series = " + sum);
}}
shaalaa.com
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 1.1: Nested Loop - EXERCISES [पृष्ठ १४५]