求所给范围内水仙花数并排列-题解(C语言代码)二本冲冲冲。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int m,n,bai,shi,ge,count=0; while(scanf(…… 题解列表 2020年08月16日 0 点赞 0 评论 321 浏览 评分:0.0
题解1851题-取巧打印(C++代码) 摘要:水仙花数就四个数 153 370 371 407 记住了直接用 ``` #include using namespace std; int main(){ int m,n; …… 题解列表 2019年06月16日 3 点赞 0 评论 416 浏览 评分:0.0
最复杂的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int sxh(int a){ int b,c,d; b=a%10; c=a/10%1…… 题解列表 2024年11月23日 0 点赞 0 评论 38 浏览 评分:0.0
求所给范围内水仙花数并排列-题解(C语言代码) 摘要:```c #include int main(void) { int n,m,flag = 0; int GW,SW,BW; while(scanf("%d%d",&n,&m)!= …… 题解列表 2020年01月05日 0 点赞 0 评论 575 浏览 评分:0.0
求所给范围内水仙花数并排列 摘要:解题思路:注意事项:注意三次幂的求法,取单个数字的方式参考代码:#include<stdio.h>#include<math.h>int main(){ int m,n,i; int ge…… 题解列表 2021年03月29日 0 点赞 0 评论 141 浏览 评分:0.0
1851利用while和for循环解决 摘要:解题思路:利用while进行输出循环,再利用好for循环将水仙花数进行筛选出来。注意事项:参考代码:#include<stdio.h>#include<math.h>#define N(x) pow(…… 题解列表 2024年12月05日 0 点赞 0 评论 164 浏览 评分:0.0
求所给范围内水仙花数并排列-题解(C语言代码) 摘要:```c /* 2020.2.18 输出所有在m和n范围内的水仙花数 */ #include #include int main(){ int m,n,a,b,c,f=0;…… 题解列表 2020年02月18日 0 点赞 0 评论 312 浏览 评分:0.0
求所给范围内水仙花数并排列 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b; int flag; while(~scanf("%d %d", &a,&b)){…… 题解列表 2019年01月15日 0 点赞 1 评论 446 浏览 评分:0.0
求所给范围内水仙花数并排列-题解(C语言代码) 摘要:```cpp #include using namespace std; int main(){ int n,m; while(cin>>n>>m){ b…… 题解列表 2020年03月28日 0 点赞 0 评论 313 浏览 评分:0.0
求所给范围内水仙花数并排列 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n,i,t,a,b,c; while(scanf("%d%d",&m,&n)!=EOF) { t=…… 题解列表 2019年05月27日 0 点赞 0 评论 397 浏览 评分:0.0