题解 1231: 杨辉三角

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

杨辉三角 (C++代码)

摘要:解题思路:水啊(注意换行)参考代码:#include<bits/stdc++.h> #define hh ios::sync_with_stdio(false),cin.tie(0),cout.ti……

杨辉三角-题解(C语言代码)

摘要:```c 解题的关键在于行数与列数的关系,比如在i==j||i==0的时候有什么特殊情况。 #include #define N 100 void Print(int a[][N],int n……

杨辉三角解题

摘要:解题思路:注意事项:参考代码:while True:    try:        def tri(row):            List = [[1 for i in range(j)] for……

杨辉三角 (Java代码)

摘要:解题思路:    使用二维数组保存数据注意事项:    生成数据可以直接输出,提高效率,不用二次遍历参考代码:import java.util.Scanner; public class Yan……

1231基础解法(Python)

摘要:解题思路:没啥思路注意事项:注意print()才是空一行,print(&#39;\n&#39;)是空两行参考代码:lst_rec = list(map(int, input().split()))fo……