水仙花数
作者:互联网
输出100~999中的所有水仙花数。若3位数ABC满足A3 + B3 + C3,则称其为水仙花数。
#include<iostream> #include<cmath> using namespace std; int main() { for(int i=100; i<=999; i++) { int h = i/100; int m = i/10%10; int l = i%10; if(pow(h, 3) + pow(m, 3) + pow(l, 3) == i) printf("%d ", i); } return 0; }
标签:std,ABC,int,100,include,水仙花 来源: https://www.cnblogs.com/dks0313/p/16684645.html