题解 1231: 杨辉三角

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

杨辉三角 (C++代码)

摘要:解题思路:注意事项:参考代码:#include <iostream>#include <deque>#include <algorithm>#include <numeric>#include <it……

杨辉三角 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int a[31][31]={0}; int main() { int n; ……

杨辉三角 (C++代码)

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int main(){ int n; while(cin>>n) ……

杨辉三角 (C++代码)

摘要:解题思路:水啊(注意换行)参考代码:#include<bits/stdc++.h> #define hh ios::sync_with_stdio(false),cin.tie(0),cout.ti……

杨辉三角 (C++代码)

摘要:解题思路:         给出两个代码,第一个是解决这个题目的,但是写完之后觉得没有体现出杨辉三角形的对称性,所以解决完这个题目后,添加了少少的几行代码,让它真正成为一个对称的三角形。但是到最后由于……

杨辉三角 (C++代码)

摘要:解题思路:             之前我写了一个用找到的规律来写的杨辉三角形的代码,想了一下又想到当初学排列组合数时说杨辉三角形中的数字就是排列组合数,所以用组合数又写了一次。           ……

杨辉三角-题解(C++代码)

摘要:解题思路: 思路很一般,利用二位数组来存储三角阵。利用两个嵌套的for循环就可以将整个三角阵输入到二位数组中,在二维数组的逐层输入的过程中。先判断本层数组的首尾,给本层数组的首尾都赋值为1,然后再对……

杨辉三角(c++)(新手)

摘要:解题思路:首先获取 1-30 的所有的数据在输出.注意事项:参考代码:#include<iostream>#include<cstdio>#include<cstring>using namespac……