Ask 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 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.

+2
Answers (1)
  1. 12 May, 01:27
    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?
Find 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 the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers