1231基础解法(Python) 摘要:解题思路:没啥思路注意事项:注意print()才是空一行,print('\n')是空两行参考代码:lst_rec = list(map(int, input().split()))fo…… 题解列表 2022年12月26日 0 点赞 0 评论 99 浏览 评分:0.0
小白基础版)杨辉三角 摘要:解题思路:基本操作注意事项:参考代码:#include<stdio.h>int deal(int n);int main(){ int a; while(scanf("%d",&a)!=E…… 题解列表 2022年11月21日 0 点赞 0 评论 263 浏览 评分:9.3
杨辉三角, 三种方法: 组合数 || 递归 || 迭代,都很简单 摘要: #include long long Fun(int n, int m)// 组合数,注意大组合数 { if (n …… 题解列表 2022年11月14日 0 点赞 0 评论 770 浏览 评分:9.9
1231-杨辉三角(代码简洁,思路清晰) 摘要:```cpp #include using namespace std; int a[30][30]; //1>n) //输入多组数据,按ctrl+z键退出循环 { for(in…… 题解列表 2022年10月13日 0 点赞 0 评论 76 浏览 评分:0.0
111111111111111111111111111111111111111111111111111111111111 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,j,a[100][100]; while(scanf("%d",&n)==1) …… 题解列表 2022年08月06日 0 点赞 0 评论 348 浏览 评分:0.0
1231: 杨辉三角 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a[35][35],n;int main(){ a[1][1]=…… 题解列表 2022年05月22日 0 点赞 0 评论 142 浏览 评分:0.0
动态规划解题 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; while(scanf("%d",…… 题解列表 2022年04月07日 0 点赞 0 评论 134 浏览 评分:0.0
杨辉三角(相当于一个矩阵的下三角,利用矩阵的知识就可以了) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int num[30][30] = { 1 }; int main(){ int n;…… 题解列表 2022年02月05日 0 点赞 0 评论 99 浏览 评分:0.0
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
编写题解 1231: 杨辉三角 摘要:解题思路:通过迭代进行循环注意事项:参考代码:#include<stdio.h> int main(){ int a,b,c,d,f[100][100]; while(scanf("%d",…… 题解列表 2021年10月31日 0 点赞 0 评论 569 浏览 评分:8.0