Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

helper=0;

i=1;
x=0;
if (num>1)
{
num--;
while(num>=1)
{
helper=num*i;
x=x+helper;
num--;
i++;
}
}
else
x=0;

You might also like