【算法-3】求100—999之间的水仙花数

输出100—999中所有的水仙花数,若3位数xyz满足

, 则xyz为水仙花数;


例如

, 因此153是水仙花数。

直接上代码:

#include 
using namespace std;

// 方法一
void daffodil_1()
{
    int a = 0;
    for (int x=1; x<10; x++)
    {
        for (int y =0; y<10; y++)
        {
            for (int z = 0; z<10; z++)
            {
                a = 100*x+10*y+z;
                if (a== x*x*x + y*y*y + z*z*z)
                {
                    cout<" 是水仙花数"<int x = 0;
    int y = 0;
    int z = 0;
    for (int n=100; n<1000; n++)
    {
        x = n / 100;
        y = (n % 100)/10 ;
        z = n % 10;

        if(n == x*x*x + y*y*y +z*z*z)
        {
            cout<" 是水仙花数"<int main()
{
    cout<<"----------daffodil_1()---------"<"----------daffodil_2()---------"<return 0;
}

【算法-3】求100—999之间的水仙花数_第1张图片

你可能感兴趣的:(算法)