हिंदी

Write the program to find the sum of the following series: S = a − a3 + a5 − a7 + ..................... to n - Computer Applications

Advertisements
Advertisements

प्रश्न

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

S = a − a3 + a5 − a7 + ..................... to n 

संक्षेप में उत्तर

उत्तर

import java.util.*;
public class Q3e
{public static void main(String args[])
{int a, n, cnt = 1;
double term, sum = 0;
Scanner obj = new Scanner(System.in);
System.out.printIn("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 = i + 2)
{term = Math.pow(a, i);
System.out.printIn(term); // optional print
if (cnt % 2 == 0)
sum = sum − term;
else
sum = sum + term;
cnt++;
}
System.out.printIn("Sum of the series is " + (float) sum);
}}
shaalaa.com
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 1.09: Iterative Constructs in Java - EXERCISES [पृष्ठ १२४]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
अध्याय 1.09 Iterative Constructs in Java
EXERCISES | Q VI. 3. (e) | पृष्ठ १२४
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×