1231杨辉三角,C语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int n; int a[100][100]={1}; while(scanf("%d",…… 题解列表 2024年12月31日 1 点赞 0 评论 129 浏览 评分:10.0
一维数组解决,嘿嘿嘿,我就爱写点超级简单好理解的题解 摘要:解题思路:解题思路啊,我就是当初想多了其他前辈们解决其他题目的想法而已,size其实可以没有来着这题,我一直就是想要用一维数组解决而已思路就下面这个啊/*1 a[0]=11 1 a[0]=1 a[…… 题解列表 2024年12月21日 0 点赞 0 评论 90 浏览 评分:0.0
杨辉三角详细讲解 摘要:解题思路: 一、功能概述这段C语言代码的主要功能是生成并输出杨辉三角形。程序通过递归函数来计算杨辉三角形中每个位置的元素值,然后在 main 函数中循环读取用户输入的行数,并输出对应的杨辉三角形。 二…… 题解列表 2024年11月25日 3 点赞 0 评论 312 浏览 评分:10.0
题解 1231: 菜鸟解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,n,a[30][30]; while(scanf("%d",&n)==1){ …… 题解列表 2024年11月23日 0 点赞 0 评论 167 浏览 评分:9.9
----------------杨辉三角------------woc--------杨辉三角-----------woc---------卧槽 摘要:解题思路:无注意事项:无参考代码:#include <stdio.h> int main() { int n; while (~scanf("%d", &n)){ int nu…… 题解列表 2024年07月29日 0 点赞 0 评论 226 浏览 评分:9.9
1231: 杨辉三角 摘要:```cpp #include using namespace std; int a[1000][1000]; int main() { int n; while(cin>>n) { …… 题解列表 2024年06月27日 1 点赞 0 评论 241 浏览 评分:9.9
杨辉三角(Java) 摘要:解题思路:注意事项:参考代码:package arrLast; //题目 1231: 杨辉三角 import java.util.Scanner; public class t_1231 { …… 题解列表 2024年02月01日 0 点赞 0 评论 81 浏览 评分:0.0
1231: 杨辉三角 摘要:``` #include using namespace std; const int N=110; int a[N][N]; int main(){ int n; while(cin…… 题解列表 2023年12月22日 0 点赞 0 评论 96 浏览 评分:2.0
1231: 杨辉三角 摘要:``` #include using namespace std; const int N=110; int a[N][N]; int main(){ int n; while(ci…… 题解列表 2023年12月22日 0 点赞 0 评论 66 浏览 评分:0.0
题解 1231: 杨辉三角 摘要: #include using namespace std; const int N=110; int a[N][N]; int main(){ …… 题解列表 2023年12月22日 0 点赞 0 评论 72 浏览 评分:0.0