WAP to find the sum of series: S = x/2+x/5+x/8+x/11+............+ x/20
Answers
Answered by
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
28
Answer:
Heya mate here's the answer Mark as brainliest pleaseeeeee ‼️
Attachments:
Similar questions