1231: 杨辉三角 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define N 100void yang(int n){ int i,j,a[N][N]; for(i=0;i<N;i++) …… 题解列表 2023年10月26日 0 点赞 1 评论 175 浏览 评分:8.0
C代码记录之杨辉三角 摘要:解题思路:主要用了两个数组,后一行的每一个数都等于前一行的两个数相加(首位除外)后续优化一下,对称输出,而不是居左输出注意事项:参考代码:#include<stdio.h> #include<std…… 题解列表 2023年11月23日 0 点赞 0 评论 83 浏览 评分:0.0
1231: 杨辉三角 摘要: #include using namespace std; const int N=1000; int a[N][N]; int main() { …… 题解列表 2023年12月04日 0 点赞 0 评论 371 浏览 评分:9.9
题解 1231: 杨辉三角 摘要: #include using namespace std; const int N=110; int a[N][N]; int main(){ …… 题解列表 2023年12月22日 0 点赞 0 评论 72 浏览 评分: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 评论 69 浏览 评分:0.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 评论 98 浏览 评分:2.0
杨辉三角(Java) 摘要:解题思路:注意事项:参考代码:package arrLast; //题目 1231: 杨辉三角 import java.util.Scanner; public class t_1231 { …… 题解列表 2024年02月01日 0 点赞 0 评论 81 浏览 评分:0.0
1231: 杨辉三角 摘要:```cpp #include using namespace std; int a[1000][1000]; int main() { int n; while(cin>>n) { …… 题解列表 2024年06月27日 1 点赞 0 评论 243 浏览 评分:9.9
----------------杨辉三角------------woc--------杨辉三角-----------woc---------卧槽 摘要:解题思路:无注意事项:无参考代码:#include <stdio.h> int main() { int n; while (~scanf("%d", &n)){ int nu…… 题解列表 2024年07月29日 0 点赞 0 评论 227 浏览 评分:9.9
题解 1231: 菜鸟解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,n,a[30][30]; while(scanf("%d",&n)==1){ …… 题解列表 2024年11月23日 0 点赞 0 评论 167 浏览 评分:9.9