提交时间:2024-11-09 09:57:47
运行 ID: 56074
#include <iostream> using namespace std; int main() { for (int i = 100; i < 1000; i++) { int a = i / 100; int b = (i / 10) % 10; int c = i % 10; if (i == a * a * a + b * b * b + c * c * c) { cout << i << endl; } } return 0; }