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
1231: 杨辉三角 摘要:``` #include using namespace std; const int N=110; int a[N][N]; int main(){ int n; while(cin…… 题解列表 2023年12月22日 0 点赞 0 评论 97 浏览 评分:2.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 评论 68 浏览 评分:0.0
题解 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=1000; int a[N][N]; int main() { …… 题解列表 2023年12月04日 0 点赞 0 评论 371 浏览 评分:9.9
杨辉三角(暴力) 摘要:解题思路:双重循环直接写就行注意事项:参考代码:#include<iostream> using namespace std; const int N=100; int n,a[N][N]; …… 题解列表 2023年08月03日 0 点赞 0 评论 371 浏览 评分:9.9
杨辉三角(C++)简单易懂 摘要:参考代码:#include <iostream>using namespace std;int main() { int n; while (cin >> n) { // 使…… 题解列表 2023年07月19日 0 点赞 0 评论 328 浏览 评分:9.0
1231: 杨辉三角 摘要:```cpp #include using namespace std; int main() { int n,a[30][30]; while(cin>>n) …… 题解列表 2023年01月13日 0 点赞 0 评论 107 浏览 评分:6.0
1231-杨辉三角(代码简洁,思路清晰) 摘要:```cpp #include using namespace std; int a[30][30]; //1>n) //输入多组数据,按ctrl+z键退出循环 { for(in…… 题解列表 2022年10月13日 0 点赞 0 评论 76 浏览 评分:0.0
1231: 杨辉三角 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a[35][35],n;int main(){ a[1][1]=…… 题解列表 2022年05月22日 0 点赞 0 评论 142 浏览 评分:0.0