Question: Given an int variable n that has been initialized to a non - negative value and, in addition, int variables k and total that have

Given an int variable n that has been initialized to a non-negative value and, in addition, int variables k and total that have already been declared, use a do... while loop to compute the sum of the cubes of the first n whole numbers, and store this value in total. Thus if n equals 4, your code should put 1**1**1+2**2**2+3**3**3+4**4**4 into total. Use no variables other than n,k, and total.
Additional Notes: n should not be modified Please use C++
Instructions
Given an int variable n that has been initialized to a non-negative value and, in addition, int variables k and total that have already been declared, use a do...while loop to compute the sum of the cubes of the first n whole numbers, and store this value in total. Thus if n equals 4, your code should put 1**1**1+2**2**2+3**3**3+4**4**4 into total. Use no variables other than n,k, and total.
Additional Notes: n should not be modified
History:
(8 of 8)0521?24,08:09:57
k=1;
total =0;
while )(4
{
total = total +(k**k)
k=k+1
}
 Given an int variable n that has been initialized to a

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!