Re: To espyrian EXCLUSIVELY



"Luis A. Afonso" wrote:
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

LOL! I'm sorry, Luis, but I think you are confused. I don't have the ability, nor the desire for that matter, to check your program. I have no need for it. All I did was suggest that your posts predominantly concerning QBasic better belong in the alt.lang.basic newsgroup rather than here. It was Reef Fish who showed the initiative by actually posting your code in alt.lang.basic for verification, and it was Tom Lake who provided an excellent, timely reply in that forum.

I hang around these sci.stat.* boards to learn about, and because of my interest in, statistics, not programming. I feel that alt.lang.basic would be better suited to your interests.
.



Relevant Pages