1231: 杨辉三角 简洁 可读性高 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>usingnamespacestd;in…… 题解列表 2025年09月22日 0 点赞 0 评论 264 浏览 评分:0.0
一维数组的解法 摘要:```cpp#includeusing namespace std;int main(){ int a; while(cin >> a) { …… 题解列表 2025年08月19日 0 点赞 0 评论 80 浏览 评分:0.0
1231: 杨辉三角 摘要:```cpp #include using namespace std; int a[1000][1000]; int main() { int n; while(cin>>n) {…… 题解列表 2024年06月27日 1 点赞 0 评论 507 浏览 评分: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 评论 233 浏览 评分: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 评论 228 浏览 评分:0.0
题解 1231: 杨辉三角 摘要: #include using namespace std; const int N=110; int a[N][N]; int main(){ …… 题解列表 2023年12月22日 0 点赞 0 评论 211 浏览 评分:0.0
1231: 杨辉三角 摘要: #include using namespace std; const int N=1000; int a[N][N]; int main() { …… 题解列表 2023年12月04日 0 点赞 0 评论 610 浏览 评分:9.9
杨辉三角(暴力) 摘要:解题思路:双重循环直接写就行注意事项:参考代码:#include<iostream> using namespace std; const int N=100; int n,a[N][N]; …… 题解列表 2023年08月03日 1 点赞 0 评论 475 浏览 评分:9.9
杨辉三角(C++)简单易懂 摘要:参考代码:#include <iostream>using namespace std;int main() { int n; while (cin >> n) { // 使…… 题解列表 2023年07月19日 0 点赞 0 评论 484 浏览 评分:9.0
1231: 杨辉三角 摘要:```cpp #include using namespace std; int main() { int n,a[30][30]; while(cin>>n) …… 题解列表 2023年01月13日 0 点赞 0 评论 221 浏览 评分:6.0