1016一行解(Python) 摘要:注意事项:强行一行,实际编程意义不大参考代码:for i in range(100, 999) : print(i) if sum(map(lambda x : x ** 3, list(map(in…… 题解列表 2022年11月04日 0 点赞 1 评论 416 浏览 评分:9.9
水仙花数判断的常用两种思路(C语言代码) 摘要:####解题思路: `第一种:`通过单一循环把100~999的三位数全部遍历一遍,在循环体内把**百位数**,**十位数**,**个位数**通过除,取余方式求出来,再来进行判断是否为水仙花数。 `…… 题解列表 2022年01月20日 0 点赞 0 评论 281 浏览 评分:9.9
水仙花数判断简单易懂(c语言详细代码) 摘要:解题思路:首先拿到所有三位数,再将每个三位数拆分算出立方和,最后 比较输出水仙花数注意事项:参考代码:#include<stdio.h> #include<math.h> int main() {…… 题解列表 2023年11月09日 0 点赞 0 评论 124 浏览 评分:9.9
骗 过 上 帝 的 题 解 摘要:解题思路:由于与阿姆斯特朗数一样,因此不再赘述。还是那四个数注意事项:【手动滑稽】参考代码:#include<stdio.h>int main(){ printf("153\n"); pr…… 题解列表 2022年08月06日 0 点赞 0 评论 135 浏览 评分:9.9
转化为数组 摘要:解题思路:强制类型转换求和注意事项:无参考代码:for i in range(100,1000): my_str = str(i) sum = int(my_str[0]) ** 3 + …… 题解列表 2024年04月21日 0 点赞 0 评论 198 浏览 评分:9.9
[编程入门]水仙花数判断-题解(C语言代码) 摘要:解题思路:(很简单)注意事项:(初学者使用)参考代码:#include <iostream>#include <cstdio>using namespace std;int main(){ f…… 题解列表 2020年11月17日 0 点赞 0 评论 543 浏览 评分:9.9
[编程入门]水仙花数判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,i; for(i=100; i<1000; i++){ a = i…… 题解列表 2022年04月29日 0 点赞 0 评论 185 浏览 评分:9.9
最直接法判断 摘要:解题思路:这是最直接的思路,将数字分离,求立方和相加,判断是不是相等,即可注意事项:水仙花是三位数,就是100到999,指定了范围参考代码:#include<stdio.h>int main(){ i…… 题解列表 2022年05月12日 0 点赞 0 评论 825 浏览 评分:9.9
判断水仙花 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n,ge,shi,bai; //scanf("%d",&n)…… 题解列表 2023年11月22日 0 点赞 0 评论 116 浏览 评分:9.9
水仙花数简单理解版 摘要:解题思路:理清题意,水仙花数是三位数的注意事项:太简单了参考代码:for i in range(100,999): a = (i//100) b =(i//10)%10 c = i%…… 题解列表 2022年12月12日 0 点赞 2 评论 391 浏览 评分:9.9