1231: 杨辉三角 摘要: #include using namespace std; const int N=1000; int a[N][N]; int main() { …… 题解列表 2023年12月04日 0 点赞 0 评论 371 浏览 评分:9.9
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
杨辉三角(暴力) 摘要:解题思路:双重循环直接写就行注意事项:参考代码:#include<iostream> using namespace std; const int N=100; int n,a[N][N]; …… 题解列表 2023年08月03日 0 点赞 0 评论 371 浏览 评分:9.9
题解 1231: 杨辉三角 摘要:```cpp #include #include using namespace std; void generate(int numRows); int main() { int…… 题解列表 2021年07月28日 0 点赞 0 评论 591 浏览 评分:9.9
杨辉三角 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int a[31][31]={0}; int main() { int n; …… 题解列表 2018年05月28日 0 点赞 0 评论 910 浏览 评分:9.9
杨辉三角 (C++代码) 摘要:解题思路: 之前我写了一个用找到的规律来写的杨辉三角形的代码,想了一下又想到当初学排列组合数时说杨辉三角形中的数字就是排列组合数,所以用组合数又写了一次。 …… 题解列表 2019年04月11日 1 点赞 1 评论 989 浏览 评分:9.9
杨辉三角(c++)(新手) 摘要:解题思路:首先获取 1-30 的所有的数据在输出.注意事项:参考代码:#include<iostream>#include<cstdio>#include<cstring>using namespac…… 题解列表 2021年05月15日 0 点赞 0 评论 524 浏览 评分:9.9
杨辉三角 (C++代码) 摘要:解题思路: 给出两个代码,第一个是解决这个题目的,但是写完之后觉得没有体现出杨辉三角形的对称性,所以解决完这个题目后,添加了少少的几行代码,让它真正成为一个对称的三角形。但是到最后由于…… 题解列表 2019年04月11日 9 点赞 0 评论 2106 浏览 评分:9.8
杨辉三角 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int main(){ int n; while(cin>>n) …… 题解列表 2018年07月07日 2 点赞 0 评论 937 浏览 评分:9.5
杨辉三角(C++)简单易懂 摘要:参考代码:#include <iostream>using namespace std;int main() { int n; while (cin >> n) { // 使…… 题解列表 2023年07月19日 0 点赞 0 评论 328 浏览 评分:9.0