मराठी

Write the program in Java to find the sum of the following series: S = 2 − 4 + 6 − 8 + ................. to n - Computer Applications

Advertisements
Advertisements

प्रश्न

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

S = 2 − 4 + 6 − 8 + ................. to n 

थोडक्यात उत्तर

उत्तर

import java.util.*;
public class Q2b
{ public static void main(String args[])
{ int sum = 0, n;
Scanner obj = new Scanner(System.in);
System.out.printn("Enter the number of terms...n");
n = obj.nextInt();
for (int i = 2; i <= (2 * n); i = i + 2) // 2n because the each term is a multiple of 2
{ if (i % 4 == 0)
sum = sum - i; 
else
sum = sum + i;
}
System.out.println("Sum of the series = " + 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. 2. (b) | पृष्ठ १२४
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×
Our website is made possible by ad-free subscriptions or displaying online advertisements to our visitors.
If you don't like ads you can support us by buying an ad-free subscription or please consider supporting us by disabling your ad blocker. Thank you.