目录 Problem Description 代码实现(C) 运行结果 Problem Description 写一个程序,该程序的功能是输出100到999之间的所有水仙花数。水仙花数的特点是:它的每个位上的数字的三次幂之和等于它本身。 例如:371 = 3 ^ 3 + 7 ^ 3 + 1 ^ 3,因此371是水仙花数。 代码实现(C) #include <stdio.h> #include <math.h> int main() { for (