1. Output all the Narcissus numbers. The so-called narcissus number refers to a 3-digit number whose cubic sum of each digit is equal to the number itself. For example, 153 = 1 * 1 * 1 + 5 * 5 * 5 + 3*

1. Output all the Narcissus numbers. The so-called narcissus number refers to a 3-digit number whose cubic sum of each digit is equal to the number itself. For example, 153 = 1 * 1 * 1 + 5 * 5 * 5 + 3*

C + + is like this, write it casually: -)
#include
using namespace std;
int main(int argc, char ** argv)
{
for (int i = 100; i