杨辉三角16行代码 简单易懂 摘要:解题思路:注意事项:参考代码:m = input().split() def YH(n): a = [[0]*(1+i) for i in range(n)] for i in …… 题解列表 2021年04月16日 0 点赞 0 评论 900 浏览 评分:9.9
杨辉三角(c++)(新手) 摘要:解题思路:首先获取 1-30 的所有的数据在输出.注意事项:参考代码:#include<iostream>#include<cstdio>#include<cstring>using namespac…… 题解列表 2021年05月15日 0 点赞 0 评论 524 浏览 评分:9.9
题解 1231: 杨辉三角 摘要:```cpp #include #include using namespace std; void generate(int numRows); int main() { int…… 题解列表 2021年07月28日 0 点赞 0 评论 591 浏览 评分:9.9
编写题解 1231: 杨辉三角 摘要:解题思路:通过迭代进行循环注意事项:参考代码:#include<stdio.h> int main(){ int a,b,c,d,f[100][100]; while(scanf("%d",…… 题解列表 2021年10月31日 0 点赞 0 评论 569 浏览 评分:8.0
c语言 二维数组ddd 摘要:解题思路:注意事项:参考代码:#include "stdio.h"int main() { int n; while (scanf("%d", &n) != EOF) { int k = 1; i…… 题解列表 2021年11月23日 0 点赞 0 评论 669 浏览 评分:9.9
杨辉三角(相当于一个矩阵的下三角,利用矩阵的知识就可以了) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int num[30][30] = { 1 }; int main(){ int n;…… 题解列表 2022年02月05日 0 点赞 0 评论 100 浏览 评分:0.0
动态规划解题 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; while(scanf("%d",…… 题解列表 2022年04月07日 0 点赞 0 评论 135 浏览 评分:0.0
1231: 杨辉三角 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a[35][35],n;int main(){ a[1][1]=…… 题解列表 2022年05月22日 0 点赞 0 评论 142 浏览 评分:0.0
111111111111111111111111111111111111111111111111111111111111 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,j,a[100][100]; while(scanf("%d",&n)==1) …… 题解列表 2022年08月06日 0 点赞 0 评论 349 浏览 评分:0.0
1231-杨辉三角(代码简洁,思路清晰) 摘要:```cpp #include using namespace std; int a[30][30]; //1>n) //输入多组数据,按ctrl+z键退出循环 { for(in…… 题解列表 2022年10月13日 0 点赞 0 评论 76 浏览 评分:0.0