> Hello,
> How to calculate value for the following formula:
>
> res = (((m+1)(m+2)...(m+(k-1)))/1.2...(k-1))
I believe that C# is due to add the "..." (stick the right code in
here) operator for version 5.0, due out sometime around 2010.
Until then, what goes in the "..." bits?
GB - 29 Aug 2006 23:19 GMT
This is multiplication.
The general formula is:
k-1
__
| | (m+i)
i=1
res = ---------------
k-1
__
| | i
i=1
Thanks,
GB
> > Hello,
> > How to calculate value for the following formula:
[quoted text clipped - 5 lines]
>
> Until then, what goes in the "..." bits?