Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
7875 刘逸杭 100~999的水仙花数 C++ Accepted 0 MS 268 KB 278 2025-05-24 19:28:38

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ for(int i=100;i<=999;i++){ int ge=i%10; int shi=i/10%10; int bai=i/100%10; if(i==ge*ge*ge+shi*shi*shi+bai*bai*bai){ cout<<i<<" "; } } return 0; }