Kanna-阶乘和数*--C 摘要:程序可能写的有点长,但已经代码分块比较好理解了(有什么不足请见谅) #include #include int main() { int i; …… 题解列表 2019年12月14日 0 点赞 2 评论 689 浏览 评分:9.5
C语言训练-阶乘和数* (C语言代码)正确的输出顺序 摘要:#include <stdio.h> #include <math.h> /********阶乘********/ int factorial(int n) { int produ…… 题解列表 2018年06月12日 10 点赞 8 评论 2702 浏览 评分:9.6
【超级详细】新手小白都能看懂的解题思路 摘要:解题思路:这道题求阶乘和数不难,但是要对结果按字典序排列需要用到一点小技巧。阶乘和数就是把数字拆分成每一位后对应的阶乘等于它本身,只需要先把数字挨个拆分,然后对拆分后的数字挨个求阶乘,最后对每一个阶乘…… 题解列表 2024年08月07日 0 点赞 0 评论 172 浏览 评分:9.9
C语言训练-阶乘和数* 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; const int N = 10; int a[N]; int main() {…… 题解列表 2024年08月30日 0 点赞 0 评论 177 浏览 评分:9.9
绝对是这道题最短代码,轻松解决 摘要:import math def is_jx(n): return sum(math.factorial(int(digit)) for digit in str(n)) == n jx_…… 题解列表 2023年10月17日 0 点赞 0 评论 274 浏览 评分:9.9
特别特别特别特别笨的招 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { for(int i=1;i<=9;i++) { int jc=1,sum=0; …… 题解列表 2024年11月26日 0 点赞 1 评论 95 浏览 评分:9.9
暴力枚举+重写sort排序思路简单 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>#include<cmath>using namespace std;const int N =…… 题解列表 2023年11月08日 0 点赞 0 评论 123 浏览 评分:9.9
史上最笨比做法 摘要:解题思路:为了达到如题排序输出格式,采用类与容器结合方式,将一个数的最高位设置为排序字段,赋值给类的order属性注意事项:参考代码:class ShuSort{public: ShuSort(int…… 题解列表 2024年03月16日 0 点赞 0 评论 155 浏览 评分:9.9