c语言的编程:100~999的水仙花数?
发布网友
发布时间:2022-04-20 02:47
我来回答
共1个回答
热心网友
时间:2023-05-18 05:04
#include <stdio.h>
void main()
{
int a,b,c,m,count;
count=0;
m=100;
printf("水仙花数为:");
do
{
a=m/100;
b=(m-a*100)/10;
c=m%10;
if(a*a*a+b*b*b+c*c*c==m)
{
printf("%5d",m);
count++;
}
m++;
}
while(m<1000);
printf("\n水仙花数为:%d\n",count);
}