for循环
for( num=100; num<=999 ; num++) { hd = num/100 ; td = num/10%10 ; sd = num%10 ; if(num==sd*sd*sd+td*td*td+hd*hd*hd) { printf("水仙花数字:%d\n", num); } } 这样怎么不行啊?
for( num=100; num<=999 ; num++) { hd = num/100 ; td = num/10%10 ; sd = num%10 ; if(num==sd*sd*sd+td*td*td+hd*hd*hd) { printf("水仙花数字:%d\n", num); } } 这样怎么不行啊?
2018-04-13
举报