Ask Question
13 May, 21:52

Write a while loop that sums up the squares of the integers from 1 through 10.

+4
Answers (1)
  1. 14 May, 00:18
    0
    Count=0;

    sum=0;

    while (count<10) {

    count++;

    sum+=count;

    }

    / / result of summation is stored in variable sum
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Write a while loop that sums up the squares of the integers from 1 through 10. ...” in 📙 Mathematics 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