Computer Science, asked by akhil200534, 1 month ago

Write different programs for following: -

Sum= 5 + 10 + 15 + 20 + 25…….. upto 10 terms.​

Answers

Answered by Anonymous
1

Answer:

hello,

its using python

Explanation:

# program to find the sum of the given series

sum=0

for i in range(0,11,5):

   sum+=i

print(sum,"is the sum of the given series")

___________________________

hope it helps you

please mark brainliest

@ItzSnowySecret07

Similar questions