特别特别特别特别笨的招 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { for(int i=1;i<=9;i++) { int jc=1,sum=0; …… 题解列表 2024年11月26日 0 点赞 1 评论 94 浏览 评分:9.9
字符串形式求解阶乘和数-C(一点小见解......) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int fact(int num);int main(){ int num=0,j=0,sum…… 题解列表 2024年11月24日 0 点赞 0 评论 65 浏览 评分:0.0
C语言训练-阶乘和数* 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; const int N = 10; int a[N]; int main() {…… 题解列表 2024年08月30日 0 点赞 0 评论 172 浏览 评分:9.9
题解(C语言) 摘要:```c #include #include #include typedef struct { int data; // 存储符合条件的数字 int sig…… 题解列表 2024年08月29日 0 点赞 0 评论 42 浏览 评分:0.0
【超级详细】新手小白都能看懂的解题思路 摘要:解题思路:这道题求阶乘和数不难,但是要对结果按字典序排列需要用到一点小技巧。阶乘和数就是把数字拆分成每一位后对应的阶乘等于它本身,只需要先把数字挨个拆分,然后对拆分后的数字挨个求阶乘,最后对每一个阶乘…… 题解列表 2024年08月07日 0 点赞 0 评论 171 浏览 评分:9.9
1155阶乘和数*(二维数组输出) 摘要:解题思路:我的方法比较麻烦,先通过遍历的方式得到符合的值,再通过一个二重for 循环字典序输出。如果看不懂的话,你直接输出他给的案例就过了,这道题主要就是字典序输出需要注意一下而已,没什么太难的地方。…… 题解列表 2024年07月08日 0 点赞 0 评论 51 浏览 评分:0.0
史上最笨比做法 摘要:解题思路:为了达到如题排序输出格式,采用类与容器结合方式,将一个数的最高位设置为排序字段,赋值给类的order属性注意事项:参考代码:class ShuSort{public: ShuSort(int…… 题解列表 2024年03月16日 0 点赞 0 评论 154 浏览 评分:9.9
1155基础解法(Python) 摘要:解题思路:随手写的,没有优化注意事项:重点在于如何实现字典序,然后要保证答案格式正确即可参考代码:import mathdic = {}count = 1func = lambda x : math.…… 题解列表 2024年01月18日 0 点赞 0 评论 74 浏览 评分:0.0
暴力枚举+重写sort排序思路简单 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>#include<cmath>using namespace std;const int N =…… 题解列表 2023年11月08日 0 点赞 0 评论 121 浏览 评分:9.9
C语言训练-阶乘和数* 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h> int Weishu(int n)//判断位数{ int i = 0; while (n …… 题解列表 2023年10月31日 0 点赞 0 评论 132 浏览 评分:0.0