मराठी

Write a program to find the sum of the following series: S = to n2a+3a2+5a3+7a4+...........................to n - Computer Applications

Advertisements
Advertisements

प्रश्न

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

S = `2/a + 3/a^2 + 5/a^3 + 7/a^4 + ........................... "to n"`

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

उत्तर

import java.util.*;
public class Q1e
{ public static void main(String args[])
{ int a, i, n = 1, cnt, t, iter = 0;
double term, sum = 0; 
Scanner obj = new Scanner(System.in);
System.out.println("Enter the number of terms");
t = obj.nextInt();
System.out.println("Enter the value of a");
a = obj.nextInt();
     while (true)
     {
   cnt = 0; // reset to zero
     for (i = 1; i <= n; i++)
   { if (n % i == 0)
cnt++;
     if (i == n)break;
     }
     if (cnt == 2) // if cnt is 2 then the number is prime
     {term = i / Math.pow(a, iter);
     if (t == iter)
     break;
     else
     sum += term;
     }
     n++;

}
System.out.println(sum);
}}
shaalaa.com
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 1.1: Nested Loop - EXERCISES [पृष्ठ १४५]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
पाठ 1.1 Nested Loop
EXERCISES | Q IV. 1. (e) | पृष्ठ १४५
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×