2837 尋找水仙花數

CRt0729發表於2024-10-17
#include<bits/stdc++.h>
#define ll long long
using namespace std;
const int N = 1e3+10;

int main()
{
    for(int i = 100; i <= 999; i++)
    {
        //判斷i是水仙花數
        int a = i % 10; //個位
        int b = i / 10 % 10; //十位
        int c = i / 100; //百位
        if(pow(a,3) + b * b * b + c * c * c == i) //pow(a,3) 計算a的3次方 
            cout << i << " "; 
    }
    return 0;
}

相關文章