#include<stdio.h>#include<math.h>int main(){
int i=1000, j, a, b, c;
for(j=100; j<i; j++)
{
a = j%10;
b = j/10%10;
c = j/100;
if( (pow(a,3)+pow(b,3)+pow(c,3))==j ) printf("%d是水仙花数\n",j);
}
return0;
}
3
#include<stdio.h>#include<math.h>int main(){
int a, b=0, i, j;
int sum=0;
printf("请输入");
scanf("%d",&a);
for(i=0; i<5; i++)
{
b = b + a*pow(10,i);
sum+=b;
}
printf("%d",sum);
return0;
}