编写题解 1016: [编程入门]水仙花数判断
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main() { int x,y,z; for(int a=100; a<1000; ……
1016: [编程入门]水仙花数判断
摘要:解题思路:注意事项:参考代码:#include <iostream>
#include <cmath>
using namespace std;
int main()
{
for (……
1016-水仙花数判断 语言:C++
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;int main(){ int a,b,c=3; ……
"水仙花数判断"题解
摘要:解题思路:要判断一个数是不是水仙花数,就是在判断它的百、十、个位的立方是否等于它本身。要取一个数的百、十、个位:百:x/100;十:x%100/10;个:x%10.立方可以调用math.h库中的pow……
[kkky]水仙花 简单遍历可得
摘要:解题思路: 获取三位数,即100-999,遍历满足条件则输出。 对十取余可获得个位; int类型 除十可去掉个位; int类型 除100……