मराठी

Write a program to find the sum of 1 + 1/8 + 1/27......1/n3, where n is the number input by the user. - Computer Science (Python)

Advertisements
Advertisements

प्रश्न

Write a program to find the sum of 1 + 1/8 + 1/27......1/n3, where n is the number input by the user.

टीपा लिहा

उत्तर

Program:
sum = 0
#Getting the number input from the user
n = int(input("Enter the number: "))
for a in range(1,n+1):
    #calculating the sum
    sum = sum + (1/pow(a,3))
#Sum of the series is
print("The sum of the series is: ",round(sum,2))

OUTPUT:
Enter the number: 5
The sum of the series is:  1.19
shaalaa.com
The ‘For’ Loop
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 6: Flow of Control - Exercise [पृष्ठ १४०]

APPEARS IN

एनसीईआरटी Computer Science [English] Class 11
पाठ 6 Flow of Control
Exercise | Q 6. | पृष्ठ १४०
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×