[运行时间比上面的最优解要短]水仙花数判断-题解(C语言代码) 摘要:思想:将个十百位分别设为变量,建立3重循环,找出满足条件的解 3重循环看似复杂,其实不然,而且可以限定界限提前跳出循环。 #include #include …… 题解列表 2019年12月04日 0 点赞 0 评论 557 浏览 评分:0.0
[编程入门]水仙花数判断 (C++代码) 摘要:```cpp #include #include #include using namespace std; int main() { int i;int s; for (i=10…… 题解列表 2019年11月23日 0 点赞 0 评论 482 浏览 评分:8.0
[编程入门]水仙-题解(Python代码) 摘要:先求出个位,十位, 百位的数,在计算判断 ```python for i in range(100, 1000): a = i%10 b = (i%100)//10 …… 题解列表 2019年11月22日 0 点赞 0 评论 1040 浏览 评分:0.0
Kanna-水仙花数判断--C 摘要: #include int main(){ int h,t,b; int i; //i从100开始到999,限定了i是3位数 …… 题解列表 2019年11月21日 0 点赞 0 评论 791 浏览 评分:8.0
[编程入门]水仙花数判断 (Python代码) 摘要:```python for i in range(100,1000): #100到999 g=i%10 #个 s=i//10%10 #十 b=i//100 …… 题解列表 2019年11月20日 0 点赞 0 评论 1758 浏览 评分:8.8
[编程入门]水仙花数判断-题解(C语言代码)这是我能想出来的最简语句了 摘要:思路:循环遍历100~999所有的数找出符合条件的数; 难点:主要是三位数的拆分 三位数的最高位为a/100(取整); 三位数中间位为a/10%10(先取整再取余); 三位数最末位为a%10(…… 题解列表 2019年11月08日 0 点赞 0 评论 455 浏览 评分:0.0
[编程入门]水仙花数判断-题解(C语言代码) 摘要:#include #include int main() { int a=100,x,y,z; while(a…… 题解列表 2019年11月07日 0 点赞 0 评论 365 浏览 评分:0.0
[编程入门]水仙花数判断-题解(Java代码) 摘要:```java /** * https://www.dotcpp.com/oj/problem1016.html * @author YangYang * 2019年10月24日 *…… 题解列表 2019年10月24日 0 点赞 0 评论 321 浏览 评分:0.0
[编程入门]水仙花数判断-题解(C语言代码) 摘要:##### 解题思路: 据题可得 ,它所要求的是在100到999之间选出满足 “水仙花数” 这一条件的数 ,因为水仙花数具有相同的特征 ,我想到了要建立一个满足 水仙花数 的一函数 ,然后让函数返回…… 题解列表 2019年10月15日 0 点赞 0 评论 474 浏览 评分:8.0
[编程入门]水仙花数判断-题解(C语言代码) 摘要: a=i/100; b=i%100/10; c=i%100%10; 求出三位数的个十百位, 浪费时间在于% / 谁在前先算谁 还有个位…… 题解列表 2019年10月14日 0 点赞 0 评论 707 浏览 评分:6.0