Computer Science, asked by saqlain111, 1 year ago

WAP to find the sum of series: S = x/2+x/5+x/8+x/11+............+ x/20​

Answers

Answered by phalgunagopal
25

Answer:

Explanation:

Class series

{

Void main(int x) //x has to be input

{

double s=0;

For (int i=2;i<=20;i=i+3)

{

S=s+(x/i);

}

}

}

Answered by Anisha5119
28

Answer:

Heya mate here's the answer Mark as brainliest pleaseeeeee ‼️

Attachments:
Similar questions