Write a program to sum the following series:
```
#include
using namespace std;
int main()
{
double sum = 0;
for (int i = 1; i <= 97; i += 2)
sum += 1.0 * i / (i + 2);
cout << "sum is " << sum;
return 0;
}
```
Computer Science & Information Technology
You might also like to view...
The ________ to Start icon on the Address bar allows you to create a tile for a currently displayed Web site
Fill in the blank(s) with correct word
Computer Science & Information Technology
Interactivity requires:
a. Events. b. Navigational tools. c. Functions. d. All of the above. e. None of the above.
Computer Science & Information Technology