InterviewSolution
Saved Bookmarks
| 1. |
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: Python program => ans = 1 for i in range(2,11): if i%3 == 0: ans += i print(ans) Like and Mark as Brainliest, it really MOTIVATES! |
|