Write a program in java to solve the Given series
Attachments:
Answers
Answered by
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
22
Answer:
Explanation:
Attachment given for reference
Attachments:
Similar questions
English,
7 months ago
Physics,
7 months ago
Computer Science,
7 months ago
Biology,
1 year ago
Math,
1 year ago