Computer Science, asked by ShivamSharma111, 1 year ago

Write a program in java to solve the Given series

Attachments:

Answers

Answered by Punya2138
0

class Sum

{ double s=0.0;

public void calc()

{ for(int x=1;x<=20;x+=2)

{ s=s+x/(x+1);

}

System.out.println(s);

}

}

Answered by Anonymous
22

Answer:

Explanation:

Attachment given for reference

Attachments:
Similar questions