To espyrian EXCLUSIVELY
- From: "\"Luis A. Afonso\"" <licas_@xxxxxxxxxxx>
- Date: Fri, 26 May 2006 16:33:21 EDT
Espyrian
Would you, please, repeat that my program (below)
provides exact vales of nCx in the range
____n<=50 , x<=25 ?
Thank you in advance
_____licas (Luis A. Afonso)
REM "binomial"
CLS
DEFDBL A-Z
PRINT " nCHOOSEx "
INPUT " n (<= 50) "; n
INPUT " x (<=25) "; x
ante = 1
FOR k = 0 TO x - 1
post = ante * (n - k) / (k + 1)
ante = post
NEXT k
PRINT USING
" ##################"; ante
END
.
- Follow-Ups:
- Re: To espyrian EXCLUSIVELY
- From: espyrian
- Re: To espyrian EXCLUSIVELY
- From: \"Luis A. Afonso\"
- Re: To espyrian EXCLUSIVELY
- From: Reef Fish
- Re: To espyrian EXCLUSIVELY
- Prev by Date: Re: Laplace´s Birthday-Matching Problem
- Next by Date: Re: Difference between Principal Components Analysis and Factor Analysis?
- Previous by thread: Is there an analog of the central limit theorem for integrals?
- Next by thread: Re: To espyrian EXCLUSIVELY
- Index(es):
Relevant Pages
|
|