求所给范围内水仙花数并排列-题解(C语言代码) 摘要:```cpp #include using namespace std; int main(){ int n,m; while(cin>>n>>m){ b…… 题解列表 2020年03月28日 0 点赞 0 评论 422 浏览 评分:0.0
题解 1851: 求所给范围内水仙花数并排列 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<math.h>int main(){ int …… 题解列表 2025年01月23日 0 点赞 0 评论 125 浏览 评分:0.0
可以说是非常详细了,详细的不像话了 摘要:解题思路: 少年无所畏惧,直接上就是了注意事项: 我觉得这题写不出来的可能原因如下: 1.怎么循环输入输出问题;下面有解释 题解列表 2024年11月30日 1 点赞 0 评论 143 浏览 评分: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 评论 78 浏览 评分:0.0
最常规的解法-C语言 摘要:解题思路: 题目要求是多组输入,所以要使用EOF这个关键字;然后是输入输出部分的话,如果输入的第二个数小于153,则直接输出NO如果大于153直接输出在范围内的水仙花数。注意事项: 注意细节,别…… 题解列表 2022年11月22日 0 点赞 0 评论 179 浏览 评分:0.0
1851: 求所给范围内水仙花数并排列 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int i; int m,n; int a[100][100]={0}; int t=0,q=0; in…… 题解列表 2022年07月28日 0 点赞 0 评论 229 浏览 评分:0.0
求所给范围内水仙花数并排列 摘要:解题思路:注意事项:注意三次幂的求法,取单个数字的方式参考代码:#include<stdio.h>#include<math.h>int main(){ int m,n,i; int ge…… 题解列表 2021年03月29日 0 点赞 0 评论 218 浏览 评分:0.0
求所给范围内水仙花数并排列-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n,i; int a,b,c,flag=0; while(scanf("%d%d",&m,&n)==…… 题解列表 2021年02月06日 0 点赞 0 评论 160 浏览 评分:0.0
求所给范围内水仙花数并排列-题解(C语言代码)二本冲冲冲。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int m,n,bai,shi,ge,count=0; while(scanf(…… 题解列表 2020年08月16日 0 点赞 0 评论 430 浏览 评分:0.0
求所给范围内水仙花数并排列-题解(C语言代码)思路清晰简单 摘要:```c #pragma warning(disable:4996) #include #include #include #include int a[1000]={0};//…… 题解列表 2020年02月21日 0 点赞 0 评论 529 浏览 评分:0.0