Problem
I'm currently taking an introducting programming course in C. This is one of our homework questions.
Write a program that displays all integers between "low" and "high" that are the sum of the cube of their digits. In other words, find all numbers xyz such that xyz = x3 + y3 + z3. For example 153 = 13 + 53 + 33. Try 100 for "low" and 1000 for "high."