1231: 杨辉三角 摘要: #include using namespace std; const int N=1000; int a[N][N]; int main() { …… 题解列表 2023年12月04日 0 点赞 0 评论 371 浏览 评分:9.9
C代码记录之杨辉三角 摘要:解题思路:主要用了两个数组,后一行的每一个数都等于前一行的两个数相加(首位除外)后续优化一下,对称输出,而不是居左输出注意事项:参考代码:#include<stdio.h> #include<std…… 题解列表 2023年11月23日 0 点赞 0 评论 81 浏览 评分:0.0
1231: 杨辉三角 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define N 100void yang(int n){ int i,j,a[N][N]; for(i=0;i<N;i++) …… 题解列表 2023年10月26日 0 点赞 1 评论 174 浏览 评分:8.0
杨辉三角(暴力) 摘要:解题思路:双重循环直接写就行注意事项:参考代码:#include<iostream> using namespace std; const int N=100; int n,a[N][N]; …… 题解列表 2023年08月03日 0 点赞 0 评论 370 浏览 评分:9.9
1231: 杨辉三角(C语言) 摘要: #include //计算杨辉三角的值 int calculate_value(int row,int col)//行和列 { if(col==1||row==col) …… 题解列表 2023年07月25日 0 点赞 0 评论 116 浏览 评分:0.0
杨辉三角(C++)简单易懂 摘要:参考代码:#include <iostream>using namespace std;int main() { int n; while (cin >> n) { // 使…… 题解列表 2023年07月19日 0 点赞 0 评论 327 浏览 评分:9.0
杨辉三角(c语言递归版本) 摘要:```c #include int YHs(int i,int j) { if(j == 0 || i == j)//当时第一行 或 i和j相等就返回1 { …… 题解列表 2023年05月02日 0 点赞 0 评论 801 浏览 评分:9.0
杨辉三角解题 摘要:解题思路:注意事项:参考代码:while True: try: def tri(row): List = [[1 for i in range(j)] for…… 题解列表 2023年02月13日 0 点赞 0 评论 71 浏览 评分:0.0
编写题解 1231: 杨辉三角 摘要:解题思路:注意事项:参考代码:#include "stdio.h" int main() { int n, i, j; int a[30][30]; while (scanf("%…… 题解列表 2023年01月23日 0 点赞 0 评论 58 浏览 评分:0.0
1231: 杨辉三角 摘要:```cpp #include using namespace std; int main() { int n,a[30][30]; while(cin>>n) …… 题解列表 2023年01月13日 0 点赞 0 评论 107 浏览 评分:6.0