[编程入门]水仙花数判断-题解(C语言代码)pow 摘要:首先接受一下 pow(a,b)函数是什么:pow函数是将a进行b次方后返回一个 双精度浮点型数据,也就是返回值为double型,pow函数在 math.h头文件里面,所以要将其加载进来#include…… 题解列表 2020年03月01日 0 点赞 0 评论 323 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.6 (C语言代码) 摘要:解题思路:水仙花问题可以借助for循环轻松解得注意事项:参考代码:#include<stdio.h>#include<math.h> int main(){ int i,j,c,t=0,g=0,h; …… 题解列表 2017年11月30日 2 点赞 0 评论 995 浏览 评分:0.0
[编程入门]水仙花数判断-题解(C++代码) 摘要: #include #include using namespace std; int main() { int n,m,i,j,sum; …… 题解列表 2019年08月03日 0 点赞 0 评论 796 浏览 评分:0.0
点开我吧,有惊喜哦!(C语言代码) 摘要:解题思路:主要是写循环结(各位小伙伴,有任何问题,都可以在下面留言哦,很乐意为你们解答)注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,i; for(…… 题解列表 2018年02月12日 1 点赞 0 评论 723 浏览 评分:0.0
水仙花数判断 摘要:解题思路:和水仙花数问题2一样参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b,c; for(int i = 100;i<…… 题解列表 2023年03月19日 0 点赞 0 评论 77 浏览 评分:0.0
[运行时间比上面的最优解要短]水仙花数判断-题解(C语言代码) 摘要:思想:将个十百位分别设为变量,建立3重循环,找出满足条件的解 3重循环看似复杂,其实不然,而且可以限定界限提前跳出循环。 #include #include …… 题解列表 2019年12月04日 0 点赞 0 评论 557 浏览 评分:0.0
1016题:水仙花数判断 摘要:# 自己写的代码 ```c #include int main() { int i; for(i=0;i99){ if((((i/100)*(i/100)*(i/1…… 题解列表 2023年04月27日 0 点赞 0 评论 90 浏览 评分:0.0
[编程入门]水仙花数判断 (C语言代码) 摘要:解题思路:三位数:for()循环从100到1000三次方:用math.h pow(x,y)计算x的y次幂三位数:个位10取余 十位100取余除十或除十取余10 百位除100参考代码:#include …… 题解列表 2019年04月24日 0 点赞 0 评论 506 浏览 评分:0.0
"水仙花数"是指一个三位数,其各位数字立方和等于其本身。如:153是一个水仙花数,因为153=1^3+5^3+3^3。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,i; for(i=100; i<=999; i++) //for()循环中i从…… 题解列表 2018年08月27日 0 点赞 0 评论 913 浏览 评分:0.0
[编程入门]水仙花数判断-题解(Python代码) 摘要:解题思路:暴力枚举注意事项:字符串与数字的转化参考代码:for i in range(1,10): for q in range(10): for w in range(10): …… 题解列表 2020年11月15日 0 点赞 0 评论 250 浏览 评分:0.0