题解 1231: 杨辉三角

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

筛选

1231基础解法(Python)

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

小白基础版)杨辉三角

摘要:解题思路:基本操作注意事项:参考代码:#include<stdio.h>int deal(int n);int main(){    int a;    while(scanf("%d",&a)!=E……

1231: 杨辉三角

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a[35][35],n;int main(){ a[1][1]=……

动态规划解题

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    int n;    while(scanf("%d",……

c语言 二维数组ddd

摘要:解题思路:注意事项:参考代码:#include "stdio.h"int main() { int n; while (scanf("%d", &n) != EOF) { int k = 1; i……

编写题解 1231: 杨辉三角

摘要:解题思路:通过迭代进行循环注意事项:参考代码:#include<stdio.h> int main(){  int a,b,c,d,f[100][100];  while(scanf("%d",……