Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
117739 颜学俊逸 100~999的水仙花数 C++ Accepted 0 MS 268 KB 232 2025-04-20 10:27:52

Tests(1/1):


Code:

#include<iostream> using namespace std; int main(){ int g,s,b; for(int i = 100;i<=999;i++){ g = i %10; s = i % 100/10; b = i /100; if(g * g * g + s * s * s + b * b * b==i){ cout<<i<<" "; } } return 0; }