I think he is stuck somewhere.And dudes you know that programming skills increases most when you read and understands codes written by others.
I don't know c++(i have just started it) but I think following c code should work for you.Note that I haven't checked if its running or not but I think its ok(atleast the logic is ok).
ok here it is:
void main()
{
int n,i,p,r,sum=0;
printf("Enter the no.:\n");
scanf("%d",&n);
for(i=0;i<=n;i++)
{r=i;
while(r!=0)
{p=r%10;
r=r/10;
sum=sum+p*p*p;
}
if(sum==i)
printf("%d\t",sum);
sum=0;
}
getch();
clrscr();
}
CHECKED,IT'S WORKING