题解 1231: 杨辉三角

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

筛选

1231杨辉三角,C语言

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

杨辉三角详细讲解

摘要:解题思路: 一、功能概述这段C语言代码的主要功能是生成并输出杨辉三角形。程序通过递归函数来计算杨辉三角形中每个位置的元素值,然后在 main 函数中循环读取用户输入的行数,并输出对应的杨辉三角形。 二……

题解 1231: 菜鸟解法

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

1231: 杨辉三角

摘要:```cpp #include using namespace std; int a[1000][1000]; int main() { int n; while(cin>>n) { ……

杨辉三角(Java)

摘要:解题思路:注意事项:参考代码:package arrLast; //题目 1231: 杨辉三角 import java.util.Scanner; public class t_1231 { ……

1231: 杨辉三角

摘要:``` #include using namespace std; const int N=110; int a[N][N]; int main(){ int n; while(cin……

1231: 杨辉三角

摘要:``` #include using namespace std; const int N=110; int a[N][N]; int main(){ int n; while(ci……