杨辉三角, 三种方法: 组合数 || 递归 || 迭代,都很简单 摘要: #include long long Fun(int n, int m)// 组合数,注意大组合数 { if (n …… 题解列表 2022年11月14日 0 点赞 0 评论 770 浏览 评分:9.9
小白基础版)杨辉三角 摘要:解题思路:基本操作注意事项:参考代码:#include<stdio.h>int deal(int n);int main(){ int a; while(scanf("%d",&a)!=E…… 题解列表 2022年11月21日 0 点赞 0 评论 263 浏览 评分:9.3
1231基础解法(Python) 摘要:解题思路:没啥思路注意事项:注意print()才是空一行,print('\n')是空两行参考代码:lst_rec = list(map(int, input().split()))fo…… 题解列表 2022年12月26日 0 点赞 0 评论 101 浏览 评分:0.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: 杨辉三角 摘要:解题思路:注意事项:参考代码:#include "stdio.h" int main() { int n, i, j; int a[30][30]; while (scanf("%…… 题解列表 2023年01月23日 0 点赞 0 评论 59 浏览 评分:0.0
杨辉三角解题 摘要:解题思路:注意事项:参考代码:while True: try: def tri(row): List = [[1 for i in range(j)] for…… 题解列表 2023年02月13日 0 点赞 0 评论 72 浏览 评分:0.0
杨辉三角(c语言递归版本) 摘要:```c #include int YHs(int i,int j) { if(j == 0 || i == j)//当时第一行 或 i和j相等就返回1 { …… 题解列表 2023年05月02日 0 点赞 0 评论 802 浏览 评分:9.0
杨辉三角(C++)简单易懂 摘要:参考代码:#include <iostream>using namespace std;int main() { int n; while (cin >> n) { // 使…… 题解列表 2023年07月19日 0 点赞 0 评论 329 浏览 评分:9.0
1231: 杨辉三角(C语言) 摘要: #include //计算杨辉三角的值 int calculate_value(int row,int col)//行和列 { if(col==1||row==col) …… 题解列表 2023年07月25日 0 点赞 0 评论 116 浏览 评分:0.0
杨辉三角(暴力) 摘要:解题思路:双重循环直接写就行注意事项:参考代码:#include<iostream> using namespace std; const int N=100; int n,a[N][N]; …… 题解列表 2023年08月03日 0 点赞 0 评论 372 浏览 评分:9.9