Computer Science, asked by angelmiraculous10, 5 months ago

write a program to print 1+x^1/1+x^2/2+x^3..x^n/n​

Answers

Answered by shwetashinghal10
0

Answer:

okokokokokokokokokoko

Answered by Anonymous
1

Answer:

hello,

its using python

Explanation:

# program to print 1+x^1/1+x^2/2+x^3..x^n/n​

x=int(input("enter the number"))

n=int(input("enter the range"))

sum=1

for i in range(1,n+1):

   sum+=(x**n)/n

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

_____________________________

hope it helps you

please mark brainliest

@ItzSnowySecret07

Similar questions