Ask Question
15 May, 06:35

Given an int variable n that has been initialized to a positive value and, in addition, int 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. 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.

+4
Answers (1)
  1. 15 May, 09:33
    0
    You don't even need k ...

    int n=4;

    int total=0;

    for (; n>0; n--) { total + = n * n * n; }
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Given an int variable n that has been initialized to a positive value and, in addition, int variables k and total that have already been ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers