Hello all, im taking a intro to c++ class as part of my design comm, and having issues withthe codelab part (online). First off it doesnt give any help to what you are doing wrong.
the prob is:
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 while loop to compute the sum of the cubes of the first n counting 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 . Do NOT modify n .
ive attempted this code:
n=0;
k=1;
while( n=0; n >=1; n<=k)
{
total = total + k;
k++;
}
not sure what im doing wrong,.
pls help thanks
the prob is:
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 while loop to compute the sum of the cubes of the first n counting 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 . Do NOT modify n .
ive attempted this code:
n=0;
k=1;
while( n=0; n >=1; n<=k)
{
total = total + k;
k++;
}
not sure what im doing wrong,.
pls help thanks
Comment