1231: 杨辉三角 摘要:```cpp #include using namespace std; int main() { int n,a[30][30]; while(cin>>n) …… 题解列表 2023年01月13日 0 点赞 0 评论 166 浏览 评分:6.0
杨辉三角-题解(C++代码) 摘要:解题思路: 思路很一般,利用二位数组来存储三角阵。利用两个嵌套的for循环就可以将整个三角阵输入到二位数组中,在二维数组的逐层输入的过程中。先判断本层数组的首尾,给本层数组的首尾都赋值为1,然后再对…… 题解列表 2019年07月27日 0 点赞 0 评论 1197 浏览 评分:6.0
1231: 杨辉三角 摘要:``` #include using namespace std; const int N=110; int a[N][N]; int main(){ int n; while(cin…… 题解列表 2023年12月22日 0 点赞 0 评论 179 浏览 评分:2.0
杨辉三角 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n,i,j,num[100][100]; while(scanf("%d",&n)!=E…… 题解列表 2018年04月25日 0 点赞 0 评论 915 浏览 评分:0.0
题解 1231: 杨辉三角 摘要: #include using namespace std; const int N=110; int a[N][N]; int main(){ …… 题解列表 2023年12月22日 0 点赞 0 评论 168 浏览 评分:0.0
C代码记录之杨辉三角 摘要:解题思路:主要用了两个数组,后一行的每一个数都等于前一行的两个数相加(首位除外)后续优化一下,对称输出,而不是居左输出注意事项:参考代码:#include<stdio.h> #include<std…… 题解列表 2023年11月23日 0 点赞 0 评论 140 浏览 评分:0.0
1231: 杨辉三角 摘要:``` #include using namespace std; const int N=110; int a[N][N]; int main(){ int n; while(ci…… 题解列表 2023年12月22日 0 点赞 0 评论 153 浏览 评分:0.0
杨辉三角(Java) 摘要:解题思路:注意事项:参考代码:package arrLast; //题目 1231: 杨辉三角 import java.util.Scanner; public class t_1231 { …… 题解列表 2024年02月01日 0 点赞 0 评论 155 浏览 评分:0.0
杨辉三角 (C++代码)动态数组解决 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main() { int line ; int *p,*p2…… 题解列表 2018年05月24日 0 点赞 0 评论 845 浏览 评分:0.0
1231: 杨辉三角(C语言) 摘要: #include //计算杨辉三角的值 int calculate_value(int row,int col)//行和列 { if(col==1||row==col) …… 题解列表 2023年07月25日 0 点赞 0 评论 191 浏览 评分:0.0