Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
112838 100~999的水仙花数 C++ Accepted 1 MS 264 KB 250 2025-03-14 18:57:35

Tests(1/1):


Code:

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