Need help understanding a line of code in C

后端 未结 0 501
一向
一向 2021-01-24 09:52

I\'m trying to understand this binomial coefficient recursion code in C.

int binomial(int n, int m){
    if(m == n){
        return 1;
    }
    else if (m == 0){         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题