Print out all the "Narcissus numbers". The so-called "narcissus number" refers to a 3-digit number whose cube sum of each digit is equal to the number itself. For example, 153 is a number

Print out all the "Narcissus numbers". The so-called "narcissus number" refers to a 3-digit number whose cube sum of each digit is equal to the number itself. For example, 153 is a number

First, decompose the hundred, ten and individual digits of three digits, and finally calculate whether the sum of each digit cube is equal to the number itself. If the condition is satisfied, output the number. If the condition is not satisfied, continue to cycle until the end of the program
one
#include
void main()
{
int i,j,k,n=100;
while(n