文章列表

筛选

第七章:函数(定义)

摘要:自定义函数:    要素:一. 返回值类型              二. 函数名字              三. 参数(输入)                    参数可以为空或无限多&n

石头剪刀布的思考

摘要:#include<stdio.h>#include<math.h>int main(){    int N,NA,NB;    int a[100],b[100];    int A[100],B[1……

数组模拟阶乘计算

摘要:```cpp #include using namespace std; const int N = 1e4+10; int ans[N]; int main() { int n; c……

笔记(关于递归的)

摘要:题目:不用循环,递归升序输出1-100 参考代码: ```c #include int print(int a) { if(a……