Given an integer variable n that has been initialized to a positive value and,in addition,Integer variables k and total that have already been declared,use a For loop to compute the sum of the cubes of the first n whole numbers, and store this value in total. Use no variables other than n,k, and total.

LANGUAGE: Visual Basic

CHALLENGE:

Given an integer variable n that has been initialized to a positive value and,in addition,Integer variables k and total that have already been declared,use a For loop to compute the sum of the cubes of the first n whole numbers, and store this value in total.
Use no variables other than n,k, and total.

SOLUTION:


total = 0
For k = 1 to n
    total += k*k*k
Next