InterviewSolution
Saved Bookmarks
| 1. |
write a program in java to calculate and print the sum of the following series: sum = 1 + 3 + 5 + 7 + …….. up to 10 terms. quick. pls. full program in java. |
|
Answer» Answer: Explanation: 1+3+5+7+9+11+13+15+17+19 are the 10 TERMS . SUM of all is 100 |
|