Se citeste un numar natural n. Sa se afiseze toate numerele mai mici sau egale cu n care sunt egale cu suma cuburilor cifrelor lor.
Exemmplu: 153 = 1 + 125 + 27
#include<iostream>
using namespace std;
int main()
{ int n,x,y,s;
cout<<"n="; cin>>n;
for(x=1;x<=n;x++)
{
y=x;
s=0;
while(y>0)
{
s=s+(y%10)*(y%10)*(y%10);
y=y/10;
}
if(x==s) cout<<x<<" ";
}
return 0;
}