题解 1231: 杨辉三角

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

筛选

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

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

杨辉三角 (C语言代码)

摘要:#include <stdio.h>int main(){     int a,i,j;     int b[30][30];      while(scanf("%d",&a)!=EOF)     ……

1231: 杨辉三角(C语言)

摘要: #include //计算杨辉三角的值 int calculate_value(int row,int col)//行和列 { if(col==1||row==col) ……

动态规划解题

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

杨辉三角 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n,i,j,num[100][100]; while(scanf("%d",&n)!=E……

杨辉三角 (Java代码)

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