阎振三


私信TA

用户名:dotcpp0667004

访问量:2960

签 名:

吃个桃桃吧

等  级
排  名 1267
经  验 3031
参赛次数 9
文章发表 49
年  龄 13
在职情况 学生
学  校
专  业 333

  自我简介:

家里蹲联大高材生

解题思路:

注意事项:

参考代码:

#include <bits/stdc++.h>

using namespace std;

long long a[1005][1005];

int main()

{

    int i,j,b,n,m;

    cin>>n>>m;

    a[1][1]=1;

    for(int i=2; i<=1000; i++)

    {

        for(int j=1; j<=i; j++)

        {

            a[i][j]=a[i-1][j]+a[i-1][j-1];

        }

    }

    cout<<a[n][m];

    return 0;

}


 

0.0分

2 人评分

  评论区

  • «
  • »