Returns the permutation nCr for the values of n and r.
NCR ( n value , r value )
└──┬──┘ └──┬──┘
Numeric expression Numeric expression
X = NCR(70, 35)
10 N=8 : R=4
20 X = NCR(N, R)
30 PRINT X
Calculates ₈C₄ and displays the result.