1231基础解法(Python) 摘要:解题思路:没啥思路注意事项:注意print()才是空一行,print('\n')是空两行参考代码:lst_rec = list(map(int, input().split()))fo…… 题解列表 2022年12月26日 0 点赞 0 评论 224 浏览 评分:0.0
编写题解 1231: 杨辉三角 摘要:解题思路:注意事项:参考代码:#include "stdio.h" int main() { int n, i, j; int a[30][30]; while (scanf("%…… 题解列表 2023年01月23日 0 点赞 0 评论 159 浏览 评分:0.0
杨辉三角解题 摘要:解题思路:注意事项:参考代码:while True: try: def tri(row): List = [[1 for i in range(j)] for…… 题解列表 2023年02月13日 0 点赞 0 评论 232 浏览 评分:0.0
1231: 杨辉三角(C语言) 摘要: #include //计算杨辉三角的值 int calculate_value(int row,int col)//行和列 { if(col==1||row==col) …… 题解列表 2023年07月25日 0 点赞 0 评论 253 浏览 评分:0.0
C代码记录之杨辉三角 摘要:解题思路:主要用了两个数组,后一行的每一个数都等于前一行的两个数相加(首位除外)后续优化一下,对称输出,而不是居左输出注意事项:参考代码:#include<stdio.h> #include<std…… 题解列表 2023年11月23日 0 点赞 0 评论 188 浏览 评分:0.0
题解 1231: 杨辉三角 摘要: #include using namespace std; const int N=110; int a[N][N]; int main(){ …… 题解列表 2023年12月22日 0 点赞 0 评论 211 浏览 评分:0.0
1231: 杨辉三角 摘要:``` #include using namespace std; const int N=110; int a[N][N]; int main(){ int n; while(ci…… 题解列表 2023年12月22日 0 点赞 0 评论 228 浏览 评分:0.0
杨辉三角(Java) 摘要:解题思路:注意事项:参考代码:package arrLast; //题目 1231: 杨辉三角 import java.util.Scanner; public class t_1231 { …… 题解列表 2024年02月01日 0 点赞 0 评论 209 浏览 评分:0.0
一维数组的解法 摘要:```cpp#includeusing namespace std;int main(){ int a; while(cin >> a) { …… 题解列表 2025年08月19日 0 点赞 0 评论 80 浏览 评分:0.0
1231: 杨辉三角 简洁 可读性高 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>usingnamespacestd;in…… 题解列表 2025年09月22日 0 点赞 0 评论 265 浏览 评分:0.0