42.编写程序打印所有的“水仙花数”。“水仙花数”指一个三位数,其各位数字立方和等于该数本身,例如153是一个“水仙花数”,因为 153=1×1×1+3×3×3+5×5×5。

//1、for循环+if判断
//2、可设计成函数

#include
using namespace std;
int ShuiXian(int);

int main()
{
    for(int i=100;i<=999;i++)
    {
        if(ShuiXian(i))
        {
            cout<

你可能感兴趣的:(编程基本功)