随笔分类 -  个人记录

摘要:基本概念 这是一个杨辉三角。 记 \(a_{i,j}\) 为第 \(i\) 行第 \(j\) 列的数。 \(a_{i,j} = a_{i-1,j-1} + a_{i-1,j}\) 示例代码 #include <bits/stdc++.h> using namespace std; int n; in 阅读全文
posted @ 2024-06-20 22:31 日月月 阅读(98) 评论(0) 推荐(0) 编辑