home *** CD-ROM | disk | FTP | other *** search
/ Boston 2 / boston-2.iso / DOS / PROGRAM / PASCAL / NRPAS / BICO.PAS < prev    next >
Pascal/Delphi Source File  |  1993-12-01  |  106b  |  5 lines

  1. FUNCTION bico(n,k: integer): real;
  2. BEGIN
  3.    bico := round(exp(factln(n)-factln(k)-factln(n-k)));
  4. END;
  5.