题解 | #输出水仙花数#
输出水仙花数
https://www.nowcoder.com/practice/dabaf13009ef4d0cbf22302fd6a530a6
#include <iostream>
using namespace std;
int main() {
// write your code here......
int a, b, c;
int i = 0;
for (i = 100; i < 1000; i++) {
a = i / 100;
b = (i / 10) % 10;
c = (i % 100) % 10;
if (i == (a * a * a) + (b * b * b) + (c * c * c))
cout << i << endl;
}
return 0;
}
牛客公司氛围 254人发布