题解 | #杨辉三角#

杨辉三角

https://www.nowcoder.com/practice/e671c6a913d448318a49be87850adbcc

#include <stdio.h>

int main() 
{
    int n=0;
    scanf("%d",&n);
    int arr[30][30]={0};
    for(int i=0;i<n;i++)
    {
        for(int j=0;j<n;j++)
        {
            if(j==0||i==j)
            arr[i][j]=1;
            else
            arr[i][j]=arr[i-1][j]+arr[i-1][j-1];
        }
    }
    for(int i=0;i<n;i++)
    {
        for(int j=0;j<n;j++)
        {
            if(arr[i][j]!=0)
            printf("%5d",arr[i][j]);
        }
        printf("\n");
    }
    return 0;
}

全部评论

相关推荐

西南山:哥,你的技能是在报菜单吗
点赞 评论 收藏
分享
求个公司要我:接好运
点赞 评论 收藏
分享
11-27 17:08
已编辑
牛客_产品运营部_私域运营
腾讯 普通offer 24k~26k * 15,年包在36w~39w左右。
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务