Ask Question
Today, 13:38

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. Today, 17: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?
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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers