Answer to Question #61843 in Python for kelly
Question #61843
Given a variable n refers to a positive int value, use two additional variables , k and total to write a for loop to compute the sum of the cubes of the first n counting numbers, and store this value in total. Thus your code should put 1*1*1 + 2*2*2 + 3*3*3 +... + n*n*n into total. Use no variables other than n, k, and total.
Expert's answer
n = int(input('input n -> '))
total = 0
for k in range(n): total += k*k*k
print (total)
total = 0
for k in range(n): total += k*k*k
print (total)
Need a fast expert's response?
Submit orderand get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment