题解 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 评论 911 浏览 评分: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
c语言 二维数组ddd 摘要:解题思路:注意事项:参考代码:#include "stdio.h"int main() { int n; while (scanf("%d", &n) != EOF) { int k = 1; i…… 题解列表 2021年11月23日 0 点赞 0 评论 669 浏览 评分:9.9
杨辉三角 (Java代码) 摘要:解题思路: import java.util.Scanner; public class C1231 { public static void main(String[] args) { …… 题解列表 2018年03月19日 3 点赞 0 评论 1266 浏览 评分:9.9
杨辉三角 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,j,a[100][100]; while(scanf("%d",&n)==1) …… 题解列表 2019年02月07日 0 点赞 2 评论 1781 浏览 评分:9.9
杨辉三角(c++)(新手) 摘要:解题思路:首先获取 1-30 的所有的数据在输出.注意事项:参考代码:#include<iostream>#include<cstdio>#include<cstring>using namespac…… 题解列表 2021年05月15日 0 点赞 0 评论 524 浏览 评分:9.9
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
杨辉三角 (C++代码) 摘要:解题思路: 之前我写了一个用找到的规律来写的杨辉三角形的代码,想了一下又想到当初学排列组合数时说杨辉三角形中的数字就是排列组合数,所以用组合数又写了一次。 …… 题解列表 2019年04月11日 1 点赞 1 评论 989 浏览 评分:9.9