剑绝尘
剑绝尘
全部文章
分类
题解(2)
归档
标签
去牛客网
登录
/
注册
剑绝尘的博客
全部文章
(共17篇)
题解 | #函数实现计算一个数的阶乘#
#include <iostream> using namespace std; long long factorial(int n); int main() { int n; cin >> n; cout << factorial...
2023-12-27
0
169
题解 | #C++选择排序#
#include <iostream> using namespace std; int main() { int arr[6] = { 0 }; int len = sizeof(arr) / sizeof(int); for (int i = 0...
2023-12-27
1
245
题解 | #牛牛的链表添加节点#
#include <stdio.h> #include <stdlib.h> typedef struct List{ int data; struct List* next; }List; void fuzhi(List** L,int n,int arr...
2023-12-26
1
237
题解 | #牛牛的链表交换#
#include <stdio.h> #include <stdlib.h> typedef struct Like{ int data; struct Like* next; }Like; void chuangjian(Like** L,int n){ ...
2023-12-26
1
233
题解 | #[NOIP2010]数字统计#
#include <stdio.h> int main() { int L,R; scanf("%d%d",&L,&R); int count=0; for(int i=L;i<=R;i++){ int tmp=...
2023-12-25
1
242
题解 | #班级成绩输入输出#
#include <stdio.h> typedef struct{ float data[5]; float sum; }Elemtype; typedef struct student{ Elemtype students[5]; }student; ...
2023-12-24
1
187
题解 | #逆序输出#
#include <stdio.h> void print(int n){ if(n==10){ return; } int a; scanf("%d",&a); print(n+1); pri...
2023-12-24
1
170
首页
上一页
1
2
下一页
末页