Really cant get this to work, it's just 3 columns displayed by a for loop, first ones the number, second is that number squared and third is that number cubed.
Cant get the third column to line up, I've tried
<< left ,
<<right,
with setfill() and without
it coming out like this;

Maybe I've these in the wrong place?
for (int i = 0; i<=50; i+=5)
{
cout<< setw(10)<<"\n Integer = "<<i;
cout<< setw(10)<<i<< char(253) << " = " <<i*i;
cout<< right <<setfill(' ') <<setw(10)<< i<< char(252) << " = " <<i*i*i;
Thanks in advance