C语言训练-阶乘和数* 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; const int N = 10; int a[N]; int main() {…… 题解列表 2024年08月30日 0 点赞 0 评论 173 浏览 评分:9.9
1155阶乘和数*(二维数组输出) 摘要:解题思路:我的方法比较麻烦,先通过遍历的方式得到符合的值,再通过一个二重for 循环字典序输出。如果看不懂的话,你直接输出他给的案例就过了,这道题主要就是字典序输出需要注意一下而已,没什么太难的地方。…… 题解列表 2024年07月08日 0 点赞 0 评论 51 浏览 评分:0.0
史上最笨比做法 摘要:解题思路:为了达到如题排序输出格式,采用类与容器结合方式,将一个数的最高位设置为排序字段,赋值给类的order属性注意事项:参考代码:class ShuSort{public: ShuSort(int…… 题解列表 2024年03月16日 0 点赞 0 评论 155 浏览 评分:9.9
暴力枚举+重写sort排序思路简单 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>#include<cmath>using namespace std;const int N =…… 题解列表 2023年11月08日 0 点赞 0 评论 121 浏览 评分:9.9
小白写法,代码虽然长了点,但是很容易理解 摘要:*代码里面有注释* ------------ ```cpp #include using namespace std; typedef long long ll; ll facto…… 题解列表 2023年06月15日 0 点赞 1 评论 320 浏览 评分:7.0
C语言训练-阶乘和数* 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>#include<math.h>using namespace std;int main(){ for(int i=…… 题解列表 2022年11月24日 0 点赞 0 评论 87 浏览 评分:0.0
阶乘和数*(第二个数不知道为什么出不来,思路很简单) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int f(int n) //阶乘 { int …… 题解列表 2022年10月29日 0 点赞 0 评论 116 浏览 评分:8.7
1155: C语言训练-阶乘和数* 摘要:方法一: ```cpp #include #include using namespace std; int Jcheng(int n); int main() { char …… 题解列表 2022年10月23日 0 点赞 0 评论 221 浏览 评分:7.0
C语言训练-阶乘和数*【按位优化】 摘要:```cpp #include #include using namespace std; int f(int n){//求阶乘 int x=1; while(n){ …… 题解列表 2022年03月02日 0 点赞 0 评论 355 浏览 评分:9.0
C语言训练-阶乘和数*-题解(C++代码) 摘要:```cpp #include #define int long long using namespace std; int a[12]; int f(int x) { if (…… 题解列表 2020年07月04日 0 点赞 0 评论 317 浏览 评分:0.0